umami/components/Icon.module.css

26 lines
295 B
CSS
Raw Normal View History

.icon {
display: inline-flex;
justify-content: center;
align-items: center;
vertical-align: middle;
}
2020-08-06 08:03:07 +02:00
.icon svg {
fill: currentColor;
}
.large > svg {
width: 24px;
height: 24px;
}
.medium > svg {
width: 16px;
height: 16px;
}
2020-08-06 08:03:07 +02:00
.small > svg {
width: 12px;
height: 12px;
}