umami/components/common/Icon.module.css

35 lines
377 B
CSS
Raw Normal View History

.icon {
display: inline-flex;
justify-content: center;
align-items: center;
vertical-align: middle;
}
2020-08-07 09:24:01 +02:00
.icon + * {
margin-left: 10px;
}
2020-08-06 08:03:07 +02:00
.icon svg {
fill: currentColor;
}
2020-08-07 07:03:02 +02:00
.xl > svg {
width: 48px;
height: 48px;
}
2020-08-06 08:03:07 +02:00
.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;
}