blob: 5b85d8b0b24f71ac70a1177cc0f3de490d8eeb6e (
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
|
.fontIconBox-outerDiv {
width: 100%;
height: 100%;
pointer-events: all;
touch-action: none;
border-radius: inherit;
background: black;
border-radius: 100%;
transform-origin: top left;
.fontIconBox-label {
background: gray;
color:white;
border-radius: 8px;
width:100%;
position: absolute;
text-align: center;
font-size: 8px;
margin-top:4px;
letter-spacing: normal;
left: 0;
overflow: hidden;
}
svg {
width: 95% !important;
height: 95%;
}
}
|