mirror of
https://github.com/docker/docs.git
synced 2026-04-12 14:25:46 +07:00
30 lines
348 B
CSS
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;
|
|
}
|
|
}
|
|
}
|