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:
@@ -60,9 +60,9 @@
|
|||||||
|
|
||||||
@mixin focus-ring($show-border: false) {
|
@mixin focus-ring($show-border: false) {
|
||||||
outline: 0;
|
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) {
|
@if($show-border) {
|
||||||
border-color: rgba(var(--tblr-primary-rgb), 0.25);
|
border-color: rgba(var(--#{$prefix}primary-rgb), 0.25);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user