1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-21 04:41:36 +02:00
Files
bootstrap/scss/mixins/_focus-ring.scss
2025-05-30 20:33:22 -07:00

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);
}
}