Move the icons styling into the global folder

This commit is contained in:
Oliver-Akins 2024-01-08 22:55:23 -07:00
parent 3f72503330
commit 4f2d40da7d
2 changed files with 1 additions and 1 deletions

14
styles/global/icons.scss Normal file
View file

@ -0,0 +1,14 @@
$iconSizes: 12, 14, 16, 18, 20, 22, 24;
.dotdungeon.dotdungeon.dotdungeon.dotdungeon {
.icon {
// The various icon sizes
@each $size in $iconSizes {
&--#{$size} {
height: #{$size}px;
width: #{$size}px;
};
}
}
}