mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-10 02:54:15 +00:00
21 lines
402 B
Plaintext
21 lines
402 B
Plaintext
@import "theme/vars.less";
|
|
|
|
.sidedrawer {
|
|
width: 30vw; // by default
|
|
|
|
background-color: var(--sidedrawer-background-color);
|
|
border-radius: @app_sidebar_borderRadius 0 0 @app_sidebar_borderRadius;
|
|
|
|
word-break: break-all;
|
|
|
|
transition: all 150ms ease-out;
|
|
|
|
padding: 20px;
|
|
overflow-x: hidden;
|
|
overflow-y: overlay;
|
|
|
|
&.hided {
|
|
width: 0;
|
|
padding: 0;
|
|
}
|
|
} |