2018-11-19 23:48:09 +00:00
|
|
|
.settings__wrapper {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
@media (max-width: @site-mobile-width) {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__sidebar {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
|
|
|
@media (max-width: @site-mobile-width) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__menu {
|
|
|
|
width: 280px;
|
2019-06-06 20:09:27 +00:00
|
|
|
margin-right: 2px;
|
2018-11-19 23:48:09 +00:00
|
|
|
|
|
|
|
@media (max-width: @site-mobile-width) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__link {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
display: block;
|
|
|
|
padding: 4px;
|
|
|
|
margin: 2px;
|
|
|
|
font-size: 1.5em;
|
|
|
|
line-height: 1.5em;
|
|
|
|
border-radius: 2px;
|
|
|
|
transition: background-color .2s;
|
|
|
|
|
|
|
|
&:hover {
|
2019-04-12 21:45:21 +00:00
|
|
|
background-color: var(--background-colour-translucent-9);
|
2018-11-19 23:48:09 +00:00
|
|
|
}
|
2019-06-06 20:09:27 +00:00
|
|
|
|
|
|
|
@media (max-width: @site-mobile-width) {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 4px 10px;
|
|
|
|
}
|
2018-11-19 23:48:09 +00:00
|
|
|
}
|
|
|
|
}
|