diff --git a/components/articles/Contact.js b/components/articles/Contact.js index 016a7fb..90bcb93 100644 --- a/components/articles/Contact.js +++ b/components/articles/Contact.js @@ -26,16 +26,16 @@ const Contact = () => { 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 cceffdd..840386b 100644 --- a/styles/components/_list.scss +++ b/styles/components/_list.scss @@ -56,11 +56,13 @@ a { border-radius: 100%; box-shadow: inset 0 0 0 _size(border-width) _palette(border); - display: inline-block; + display: inline-flex; height: 2.25rem; line-height: 2.25rem; text-align: center; width: 2.25rem; + align-items: center; + justify-content: center; &:hover { background-color: _palette(border-bg); @@ -69,6 +71,10 @@ &:active { background-color: _palette(border-bg-alt); } + + .fa-icon { + 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)}; }