1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-09 12:52:24 +04:00

#1352: fix deprecation warning (#1359)

This commit is contained in:
Paweł Kuna
2022-11-11 18:00:24 +01:00
committed by GitHub
parent 6a3affaf2a
commit 7a9702a908
3 changed files with 10 additions and 2 deletions
@@ -72,4 +72,11 @@
$active-color: null
) {
// Override bootstrap core
}
//
// TODO: remove when https://github.com/twbs/bootstrap/pull/37425/ will be released
//
@function opaque($background, $foreground) {
@return mix(rgba($foreground, 1), $background, opacity($foreground) * 100%);
}
+1 -1
View File
@@ -5,4 +5,4 @@
@import "mixins";
@import "bootstrap-config";
@import "mixins-override";
@import "bootstrap-override";
+2 -1
View File
@@ -44,4 +44,5 @@
@error "breakpoint `#{$name}` not found in `#{$breakpoints}`";
}
@return if($n > 1, nth($breakpoint-names, $n - 1), null);
}
}