refactor(docs-infra): fix indentation in `_label.scss` (#40704)

This commit makes the indentation in `_label.scss` consistent with that
in most other `.scss` files in `aio/`.

PR Close #40704
This commit is contained in:
George Kalpakas 2021-02-05 12:49:03 +02:00 committed by Alex Rickabaugh
parent 489010c00a
commit 8beb9ae94f
1 changed files with 57 additions and 57 deletions

View File

@ -1,67 +1,67 @@
label.raised, .api-header label {
border-radius: 4px;
padding: 4px 16px;
display: inline;
@include font-size(14);
border-radius: 4px;
padding: 4px 16px;
display: inline;
@include font-size(14);
color: $white;
margin-right: 8px;
font-weight: 500;
text-transform: uppercase;
@media screen and (max-width: 600px) {
display: block;
margin: 8px 0;
}
&.page-label {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
background-color: $mist;
color: $mediumgray;
margin-bottom: 8px;
width: 140px;
.material-icons {
margin-right: 8px;
}
}
&.property-type-label {
@include font-size(12);
background-color: $darkgray;
color: $white;
margin-right: 8px;
font-weight: 500;
text-transform: uppercase;
@media screen and (max-width: 600px) {
display: block;
margin: 8px 0;
}
&.page-label {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
background-color: $mist;
color: $mediumgray;
margin-bottom: 8px;
width: 140px;
.material-icons {
margin-right: 8px;
}
}
&.property-type-label {
@include font-size(12);
background-color: $darkgray;
color: $white;
text-transform: none;
}
text-transform: none;
}
}
.api-header label {
// The API badges should be a little smaller
padding: 2px 10px;
@include font-size(12);
// The API badges should be a little smaller
padding: 2px 10px;
@include font-size(12);
@media screen and (max-width: 600px) {
margin: 4px 0;
@media screen and (max-width: 600px) {
margin: 4px 0;
}
&.api-status-label {
background-color: $mediumgray;
&.deprecated, &.security, &.impure-pipe {
background-color: $brightred;
}
}
&.api-type-label {
background-color: $accentblue;
@each $name, $symbol in $api-symbols {
&.#{$name} {
background: map-get($symbol, background);
}
}
&.api-status-label {
background-color: $mediumgray;
&.deprecated, &.security, &.impure-pipe {
background-color: $brightred;
}
}
&.api-type-label {
background-color: $accentblue;
@each $name, $symbol in $api-symbols {
&.#{$name} {
background: map-get($symbol, background);
}
}
}
}
}