umami/components/common/Icon.module.css

36 lines
395 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;
}
2020-08-09 08:48:43 +02:00
.xlarge > svg {
2020-08-07 07:03:02 +02:00
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;
}
2020-08-09 12:04:48 +02:00
.xsmall > svg {
width: 10px;
height: 10px;
}