2019-08-14 09:48:44 +00:00
|
|
|
.side-menu {
|
|
|
|
i {
|
2019-11-01 08:14:03 +00:00
|
|
|
margin-right: $space-smaller;
|
2020-02-19 05:00:34 +00:00
|
|
|
min-width: $space-two;
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
2019-10-06 13:02:59 +00:00
|
|
|
z-index: 1024 - 1;
|
2019-08-14 09:48:44 +00:00
|
|
|
|
|
|
|
//logo
|
|
|
|
.logo {
|
|
|
|
img {
|
2019-10-06 13:02:59 +00:00
|
|
|
@include padding($woot-logo-padding);
|
2019-12-14 12:44:35 +00:00
|
|
|
max-height: 108px;
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-19 05:00:34 +00:00
|
|
|
.nested {
|
|
|
|
a {
|
|
|
|
font-size: $font-size-small;
|
|
|
|
margin-bottom: $space-micro;
|
|
|
|
margin-top: $space-micro;
|
|
|
|
|
2020-05-02 04:17:36 +00:00
|
|
|
.inbox-icon {
|
2020-02-19 05:00:34 +00:00
|
|
|
display: inline-block;
|
|
|
|
margin-right: $space-micro;
|
|
|
|
min-width: $space-normal;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|
2019-10-06 13:02:59 +00:00
|
|
|
}
|
|
|
|
}
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2019-10-06 13:02:59 +00:00
|
|
|
// bottom-nav
|
|
|
|
.bottom-nav {
|
|
|
|
@include flex;
|
|
|
|
@include space-between-column;
|
2021-12-01 07:15:39 +00:00
|
|
|
@include padding($space-one $space-normal $space-one $space-one);
|
2019-10-06 13:02:59 +00:00
|
|
|
@include border-normal-top;
|
2020-02-19 05:00:34 +00:00
|
|
|
flex-direction: column;
|
2019-10-06 13:02:59 +00:00
|
|
|
position: relative;
|
|
|
|
|
2021-04-08 14:12:38 +00:00
|
|
|
&:hover {
|
|
|
|
background: var(--color-background-light);
|
|
|
|
}
|
|
|
|
|
2019-10-06 13:02:59 +00:00
|
|
|
.dropdown-pane {
|
2021-02-08 11:08:35 +00:00
|
|
|
bottom: 6rem;
|
2020-02-19 05:00:34 +00:00
|
|
|
display: block;
|
2019-10-06 13:02:59 +00:00
|
|
|
visibility: visible;
|
2021-04-08 14:12:38 +00:00
|
|
|
width: fit-content;
|
2019-10-06 13:02:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.active {
|
|
|
|
border-bottom: 2px solid $medium-gray;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-01 07:15:39 +00:00
|
|
|
.hamburger--menu {
|
|
|
|
cursor: pointer;
|
|
|
|
display: none;
|
|
|
|
margin-right: $space-normal;
|
2019-10-06 13:02:59 +00:00
|
|
|
|
2021-12-01 07:15:39 +00:00
|
|
|
@media screen and (max-width: 1200px) {
|
|
|
|
display: block;
|
2019-10-06 13:02:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-12 07:23:15 +00:00
|
|
|
.header--icon {
|
|
|
|
display: block;
|
|
|
|
margin-right: $space-normal;
|
|
|
|
|
2020-02-19 05:00:34 +00:00
|
|
|
@media screen and (max-width: 1200px) {
|
2019-12-12 07:23:15 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|