Skip to content

Commit

Permalink
css deprecation warning fixes + icon resizing
Browse files Browse the repository at this point in the history
  • Loading branch information
karkir0003 committed Dec 26, 2023
1 parent 2bbb82f commit 97e16c8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion styles/base/_typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
6 changes: 1 addition & 5 deletions styles/components/_list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions styles/libs/_skel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/// Breakpoints.
/// @var {list}
$breakpoints: () !global;
$breakpoints: ();

/// Vendor prefixes.
/// @var {list}
Expand Down Expand Up @@ -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)};
}
Expand Down

0 comments on commit 97e16c8

Please sign in to comment.