mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-30 12:24:19 +01:00
1d4d9f8d89
Previously deprecated in v4.x, this clears out the now unused Sass option and removes some unused mixins. Arguably we could remove more, but I like the hover-focus mixin and we make extensive use of it across the project.
18 lines
225 B
SCSS
18 lines
225 B
SCSS
.skippy {
|
|
display: block;
|
|
padding: 1em;
|
|
color: $white;
|
|
text-align: center;
|
|
background-color: $bd-purple;
|
|
outline: 0;
|
|
|
|
&:hover {
|
|
color: $white;
|
|
}
|
|
}
|
|
|
|
.skippy-text {
|
|
padding: .5em;
|
|
outline: 1px dotted;
|
|
}
|