2020-11-30 17:07:44 +00:00
|
|
|
.user-menu {
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
&__nav-list {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__nav-item {
|
|
|
|
font-size: $x-small;
|
|
|
|
font-weight: $regular;
|
2020-12-15 02:24:16 +00:00
|
|
|
cursor: pointer;
|
2020-11-30 17:07:44 +00:00
|
|
|
|
|
|
|
&:hover {
|
2020-12-19 01:36:39 +00:00
|
|
|
background-color: $core-black-over;
|
2020-11-30 17:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&--active {
|
|
|
|
background-color: $core-black;
|
|
|
|
border-right: 3px solid $core-blue;
|
|
|
|
font-weight: $bold;
|
2020-12-19 01:36:39 +00:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: $core-black;
|
|
|
|
}
|
2020-11-30 17:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
transition: opacity 75ms $ease-in-quad, background 75ms $ease-in-quad;
|
|
|
|
color: $white;
|
2020-12-15 02:24:16 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-11-30 17:07:44 +00:00
|
|
|
text-decoration: none;
|
|
|
|
text-transform: none;
|
2020-12-19 01:36:39 +00:00
|
|
|
padding: 11px 20px;
|
2020-12-15 02:24:16 +00:00
|
|
|
}
|
2020-11-30 17:07:44 +00:00
|
|
|
|
2020-12-15 02:24:16 +00:00
|
|
|
.icon {
|
|
|
|
margin-right: 24px;
|
2021-01-15 16:57:27 +00:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2020-11-30 17:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint(smalldesk) {
|
|
|
|
a {
|
2020-12-19 01:36:39 +00:00
|
|
|
padding: 11px 14px;
|
2020-11-30 17:07:44 +00:00
|
|
|
|
|
|
|
span {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 11px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|