mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-21 04:41:36 +02:00
13 lines
297 B
SCSS
13 lines
297 B
SCSS
@use "../config" as *;
|
|
|
|
@mixin focus-ring($offset: false, $color: null) {
|
|
@if $color != null {
|
|
outline: var(--#{$prefix}focus-ring-width) solid #{$color};
|
|
} @else {
|
|
outline: var(--#{$prefix}focus-ring);
|
|
}
|
|
@if $offset {
|
|
outline-offset: var(--#{$prefix}focus-ring-offset);
|
|
}
|
|
}
|