mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
34 lines
381 B
CSS
34 lines
381 B
CSS
.icon {
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.icon + * {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.icon svg {
|
|
fill: currentColor;
|
|
}
|
|
|
|
.xlarge > svg {
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
|
|
.large > svg {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
|
|
.medium > svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
.small > svg {
|
|
width: 12px;
|
|
height: 12px;
|
|
}
|