mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-15 15:42:24 -06:00
This PR corrects the change to `/_sass/labels.scss` made in 551398f92fc125f4692e49d636d2625ca2bf3819. This change tried to set the `padding-**top**` property to **two** values rather than set the `padding` property to these values (to represent the vertical and horizontal padding values).
34 lines
518 B
SCSS
34 lines
518 B
SCSS
// Labels (not the form kind)
|
|
|
|
.label,
|
|
.label-blue {
|
|
display: inline-block;
|
|
padding: 0.16em 0.56em;
|
|
margin-right: $sp-2;
|
|
margin-left: $sp-2;
|
|
color: $white;
|
|
text-transform: uppercase;
|
|
vertical-align: middle;
|
|
background-color: $blue-100;
|
|
@include fs-2;
|
|
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.label-green {
|
|
background-color: $green-200;
|
|
}
|
|
|
|
.label-purple {
|
|
background-color: $purple-100;
|
|
}
|
|
|
|
.label-red {
|
|
background-color: $red-200;
|
|
}
|
|
|
|
.label-yellow {
|
|
color: $grey-dk-200;
|
|
background-color: $yellow-200;
|
|
}
|