15 lines
374 B
CSS
15 lines
374 B
CSS
|
|
.t-side-bar {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
width: var(--td-side-bar-width, 206rpx);
|
||
|
|
height: var(--td-side-bar-height, 100%);
|
||
|
|
overflow-y: auto;
|
||
|
|
}
|
||
|
|
.t-side-bar::-webkit-scrollbar {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.t-side-bar__padding {
|
||
|
|
flex: 1;
|
||
|
|
background-color: var(--td-side-bar-bg-color, var(--td-bg-color-secondarycontainer, var(--td-gray-color-1, #f3f3f3)));
|
||
|
|
}
|