29 lines
515 B
Text
29 lines
515 B
Text
/**
|
|
* Styles for site tools and user tools in sidebar
|
|
* Using BEM methodology as far as possible
|
|
*/
|
|
|
|
//.toollist {
|
|
//}
|
|
|
|
.toollist__listitem {
|
|
list-style: none;
|
|
|
|
a {
|
|
display: inline-flex;
|
|
flex-direction: row-reverse;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
}
|
|
|
|
span {
|
|
font-size: @font-size-default;
|
|
}
|
|
|
|
svg {
|
|
width: @font-size-default;
|
|
vertical-align: middle;
|
|
fill: var(--color-foreground);
|
|
margin-right: .2em;
|
|
}
|
|
}
|