1/**
2 * Styles for site tools and user tools in sidebar
3 * Using BEM methodology as far as possible
4 */
5
6//.toollist {
7//}
8
9.toollist__listitem {
10    list-style: none;
11
12    a {
13        display: inline-flex;
14        flex-direction: row-reverse;
15        flex-wrap: nowrap;
16        align-items: center;
17    }
18
19    span {
20        font-size: @font-size-default;
21    }
22
23    svg {
24        width: @font-size-default;
25        vertical-align: middle;
26        fill: @ini_nav_menu_color;
27        margin-right: .2em;
28    }
29}
30