We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfeba17 commit a8ecabeCopy full SHA for a8ecabe
less/forum/sideNav.less
@@ -13,20 +13,28 @@
13
margin: 2px 0;
14
15
> a {
16
+ --icon-size: 30px;
17
padding: 6px;
- display: flex;
18
+ display: grid;
19
+ grid-template-columns: var(--icon-size) 1fr;
20
align-items: center;
21
border-radius: 25px;
22
transition: background-color 0.4s, color 0.4s;
23
font-size: 14px;
24
+ grid-gap: 10px;
25
26
.Button-icon {
- .asirem-icon-block(30px);
27
+ .asirem-icon-block(var(--icon-size));
28
float: none;
- margin: 0 10px 0 0;
29
+ margin: 0;
30
border-radius: 100%;
31
transition: background-color 0.4s;
32
}
33
+
34
+ .Button-label {
35
+ overflow: hidden;
36
+ text-overflow: ellipsis;
37
+ }
38
39
40
&.active {
0 commit comments