mirror of
https://github.com/withastro/astro.git
synced 2024-12-30 22:03:56 -05:00
22 lines
273 B
SCSS
22 lines
273 B
SCSS
|
/**
|
||
|
* Icon
|
||
|
* SVG icons and the like
|
||
|
*/
|
||
|
|
||
|
.snow-icon {
|
||
|
display: block;
|
||
|
width: 1em;
|
||
|
height: 1em;
|
||
|
fill: currentColor;
|
||
|
|
||
|
// ----------
|
||
|
// Modifiers
|
||
|
// ----------
|
||
|
|
||
|
// note: this is just an example; make others!
|
||
|
&__lg {
|
||
|
width: 2em;
|
||
|
height: 2em;
|
||
|
}
|
||
|
}
|