blob: 7345b8e80f30898026cc6758dbf2ed95c259a4ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/*
* Layout of a fixed sidebar item
*
* +--------+----------------+
* | Icon | Name |
* +--------+----------------+
*/
.sidebar-fixed-item__container {
align-items: center;
border-radius: 2px;
display: grid;
grid-template-columns: 34px 1fr;
height: 100%;
font-size: var(--body-20-font-size);
font-weight: var(--body-20-font-weight);
}
.sidebar-fixed-item__icon {
fill: currentColor;
height: 24px;
margin-inline-end: 9px;
width: 24px;
-moz-context-properties: fill;
}
|