mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-24 09:58:21 +03:00
16 lines
273 B
SCSS
16 lines
273 B
SCSS
|
@import "../utils/base";
|
||
|
|
||
|
.aside-menu {
|
||
|
position: fixed !important;
|
||
|
top: $headerHeight;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
z-index: 1000;
|
||
|
display: block;
|
||
|
padding: 20px;
|
||
|
overflow-x: hidden;
|
||
|
overflow-y: auto;
|
||
|
background-color: #f7f7f7;
|
||
|
border-right: 1px solid #eee;
|
||
|
}
|