1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-22 01:44:25 +04:00

Fix dynamic scss prefix in mixins (#1745)

* Fix dynamic scss prefix in mixins
This commit is contained in:
Ngô Quốc Đạt
2023-10-19 22:57:11 +07:00
committed by GitHub
parent 80f5732d1a
commit 09f3383f2d

View File

@@ -60,9 +60,9 @@
@mixin focus-ring($show-border: false) {
outline: 0;
box-shadow: 0 0 $focus-ring-blur $focus-ring-width rgba(var(--tblr-primary-rgb), 0.25);
box-shadow: 0 0 $focus-ring-blur $focus-ring-width rgba(var(--#{$prefix}primary-rgb), 0.25);
@if($show-border) {
border-color: rgba(var(--tblr-primary-rgb), 0.25);
border-color: rgba(var(--#{$prefix}primary-rgb), 0.25);
}
}
}