More deprecation warning css fixes

This commit is contained in:
Joe Uhren
2024-10-29 18:25:51 -06:00
parent e00dc0f511
commit 8730b94629
2 changed files with 6 additions and 2 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
@use "sass:string";
@use 'theme-selector' as theme-selector;
@use './themes/cerulean/variables' as cerulean;
@use './themes/cosmo/variables' as cosmo;
@@ -26,7 +28,7 @@
@use './themes/yeti/variables' as yeti;
@use './themes/zephyr/variables' as zephyr;
$theme-name: to-lower-case(theme-selector.$theme-name);
$theme-name: string.to-lower-case(theme-selector.$theme-name);
@mixin table-border-color($important: 0) {
@if $theme-name == "cerulean" {
+3 -1
View File
@@ -1,6 +1,8 @@
// Zephyr 5.1.3
// Bootswatch
@use "sass:string";
$theme: "zephyr" !default;
//
@@ -160,4 +162,4 @@ $list-group-item-padding-x: 1.5rem !default;
$breadcrumb-padding-x: 1rem !default;
$breadcrumb-divider: quote(">") !default;
$breadcrumb-divider: string.quote(">") !default;