mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-02 14:24:19 +01:00
21 lines
407 B
SCSS
21 lines
407 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 / 2 !important;
|
|
margin: $spacer / 4 !important;
|
|
overflow: visible !important;
|
|
clip: auto !important;
|
|
white-space: normal !important;
|
|
}
|
|
}
|