Commit 4a24eb92 authored by Paul Slaughter's avatar Paul Slaughter

Add square css class

**Why?**

This is helpful when needing to wrap the size of an svg
with an empty container. Example:

```
<div class="square s-32 d-flex-center">
  <svg class="s16">...</svg>
</div>
```
parent 8028a59d
......@@ -38,7 +38,10 @@
svg {
fill: currentColor;
}
.square,
svg {
$svg-sizes: 8 10 12 14 16 18 24 32 48 72;
@each $svg-size in $svg-sizes {
&.s#{$svg-size} {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment