Files
docker-docs/assets/css/icons.css
David Karlsson adcb1edfa7 chore: style and script refactor
Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
2024-02-23 15:03:27 +01:00

30 lines
348 B
CSS

@layer utilities {
.icon-svg {
svg {
font-size: 24px;
width: 1em;
height: 1em;
display: inline-block;
fill: currentColor;
}
}
.icon-xs {
svg {
@apply text-base;
}
}
.icon-sm {
svg {
@apply text-lg;
}
}
.icon-top {
svg {
@apply ml-1 align-top;
}
}
}