mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-13 20:44:16 +00:00
44 lines
896 B
Plaintext
44 lines
896 B
Plaintext
@import "theme/vars.less";
|
|
|
|
.sidedrawers-wrapper {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
> div {
|
|
transform: translate(-50px, 0);
|
|
}
|
|
|
|
.sidedrawer {
|
|
position: relative;
|
|
|
|
width: 30vw; // by default
|
|
height: 100vh;
|
|
|
|
min-width: 700px;
|
|
|
|
z-index: 20;
|
|
|
|
background-color: var(--sidedrawer-background-color);
|
|
border-radius: 0 @app_sidebar_borderRadius @app_sidebar_borderRadius 0;
|
|
|
|
padding: 20px;
|
|
padding-left: 70px;
|
|
|
|
transform: translate(-50px, 0);
|
|
|
|
overflow-x: hidden;
|
|
overflow-y: overlay;
|
|
|
|
word-break: break-all;
|
|
transition: all 150ms ease-in-out;
|
|
|
|
// create shadow on the right side
|
|
box-shadow : 0 0 5px 4px rgba(0, 0, 0, 0.1) !important;
|
|
|
|
&.hided {
|
|
width: 0;
|
|
min-width: 0;
|
|
padding: 0;
|
|
}
|
|
}
|
|
} |