Files
2025-07-07 16:05:18 +08:00

36 lines
619 B
SCSS

::-webkit-scrollbar-thumb {
display: none;
}
::-webkit-scrollbar {
width: 0px;
height: 0px;
}
.segmentedWrapper {
overflow-x: auto;
.segmented {
position: relative;
display: grid;
width: max-content;
min-width: 100%;
padding-bottom: 10px;
//border-bottom: 1px solid #ececec;
box-sizing: border-box;
font-size: 18px;
.segmentedItem {
display: flex;
justify-content: center;
cursor: pointer;
text-align: center;
padding: 0px 6px;
}
.segmentedThumb {
position: absolute;
bottom: 0px;
height: 2px;
background-color: #333333;
transition: all 0.3s ease-out;
}
}
}