1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2026-01-07 07:26:20 +00:00

fix: mitigate Dart Sass depreciation warnings

This commit is contained in:
classicrocker883
2024-11-02 05:05:02 -04:00
parent 86b13c917f
commit 81d3d055e4
11 changed files with 245 additions and 227 deletions

View File

@@ -1,3 +1,5 @@
@use '../addon/variables';
/*
Style for Tab Categories
*/
@@ -12,11 +14,11 @@
&.card,
.list-group {
@extend %rounded;
@extend %rounded !optional;
}
.card-header {
$radius: calc($radius-lg - 1px);
$radius: calc(variables.$radius-lg - 1px);
padding: 0.75rem;
border-radius: $radius;
@@ -29,7 +31,7 @@
}
i {
@extend %category-icon-color;
@extend %category-icon-color !optional;
font-size: 86%; /* fontawesome icons */
}