mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-22 14:52:17 +01:00
8dec3d0a34
Fixes #34353. Co-Authored-By: Slaven Tomac <slaventomac@gmail.com>
21 lines
410 B
SCSS
21 lines
410 B
SCSS
// stylelint-disable declaration-no-important
|
|
|
|
.skippy {
|
|
background-color: $bd-purple;
|
|
|
|
a {
|
|
color: $white;
|
|
}
|
|
|
|
&:focus-within a {
|
|
position: static !important;
|
|
width: auto !important;
|
|
height: auto !important;
|
|
padding: $spacer * .5 !important;
|
|
margin: $spacer * .25 !important;
|
|
overflow: visible !important;
|
|
clip: auto !important;
|
|
white-space: normal !important;
|
|
}
|
|
}
|