mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-02-26 19:56:41 +00:00
35 lines
557 B
SCSS
35 lines
557 B
SCSS
@import '../utils/base';
|
|
|
|
.menu-layout__swipeable {
|
|
$offset: 15px;
|
|
|
|
height: 100%;
|
|
margin-right: -$offset;
|
|
margin-left: -$offset;
|
|
padding-left: $offset;
|
|
padding-right: $offset;
|
|
}
|
|
|
|
.menu-layout__swipeable-inner {
|
|
height: 100%;
|
|
}
|
|
|
|
.menu-layout__burger-icon {
|
|
display: none;
|
|
transition: color 300ms;
|
|
position: fixed;
|
|
top: 18px;
|
|
z-index: 1035;
|
|
font-size: 1.5rem;
|
|
cursor: pointer;
|
|
color: rgba(255, 255, 255, .5);
|
|
|
|
@media (max-width: $smMax) {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
.menu-layout__burger-icon--active {
|
|
color: white;
|
|
}
|