diff --git a/styles/base/_typography.scss b/styles/base/_typography.scss index 3447b3a..5b0e4c2 100644 --- a/styles/base/_typography.scss +++ b/styles/base/_typography.scss @@ -138,7 +138,7 @@ border-left: solid (_size(border-width) * 4) _palette(border); font-style: italic; margin: 0 0 _size(element-margin) 0; - padding: (_size(element-margin) / 4) 0 (_size(element-margin) / 4) _size(element-margin); + padding: calc(_size(element-margin) / 4) 0 calc(_size(element-margin) / 4) _size(element-margin); } code { diff --git a/styles/components/_list.scss b/styles/components/_list.scss index fc8f74c..840386b 100644 --- a/styles/components/_list.scss +++ b/styles/components/_list.scss @@ -73,11 +73,7 @@ } .fa-icon { - font-size: 1rem; // Adjust the size of the icon as needed - //display: inline-flex; // Use flex to center the icon - //align-items: center; - //justify-content: center; - //height: 100%; + font-size: 1.5rem; // Adjust the size of the icon as needed } } } diff --git a/styles/libs/_skel.scss b/styles/libs/_skel.scss index f5e0dcd..d2aa41c 100644 --- a/styles/libs/_skel.scss +++ b/styles/libs/_skel.scss @@ -4,7 +4,7 @@ /// Breakpoints. /// @var {list} - $breakpoints: () !global; + $breakpoints: (); /// Vendor prefixes. /// @var {list} @@ -573,7 +573,7 @@ } // Expand just the value? - @elseif $expandValue { + @else if $expandValue { @each $vendor in $vendor-prefixes { #{$property}: #{str-replace-all($value, '-prefix-', $vendor)}; }