1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-16 10:31:41 +04:00

Refactor SCSS variables for box-shadow and nav-link colors to use CSS custom properties for improved consistency and customization

This commit is contained in:
codecalm
2026-02-19 00:10:04 +01:00
parent 943283568a
commit 65829e9d5e
5 changed files with 14 additions and 7 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ $pricing-card-width: 22rem;
padding: 2rem;
margin: 0 0 1rem;
position: relative;
box-shadow: $box-shadow-card;
box-shadow: var(--#{$prefix}shadow-card);
text-align: center;
@include border-radius($border-radius-lg);
@@ -46,7 +46,7 @@ $pricing-card-width: 22rem;
order: unset;
margin-top: 0;
margin-bottom: 0;
box-shadow: $box-shadow-card;
box-shadow: var(--#{$prefix}shadow-card);
@include border-radius($border-radius-lg);
}
}