mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
30 lines
341 B
CSS
30 lines
341 B
CSS
@layer utilities {
|
|
.icon-svg {
|
|
svg {
|
|
font-size: 24px;
|
|
width: 1em;
|
|
height: 1em;
|
|
display: inline-block;
|
|
fill: currentColor;
|
|
}
|
|
}
|
|
|
|
.icon-xs {
|
|
svg {
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
|
|
.icon-sm {
|
|
svg {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
.icon-lg {
|
|
svg {
|
|
font-size: 32px;
|
|
}
|
|
}
|
|
}
|