scss: replace pk-button compound selector by a simple one (#25297)

required for sassc ≥ 3.6.1
This commit is contained in:
Frédéric Péters 2020-02-29 13:29:39 +01:00
parent e328ece6f4
commit 8418ca6e7b
1 changed files with 8 additions and 8 deletions

View File

@ -15,17 +15,17 @@ $table-headers-font-weight: $title-weight !default;
$table-headers-text-transform: $title-transform !default;
$table-headers-font-family: $title-font-family !default;
a.pk-button {
@extend button.ui-button;
a.pk-button, a.pk-big-button {
@extend %button;
display: inline-block;
padding: 0.5rem 1rem;
margin: 0;
height: auto;
}
a.pk-big-button {
@extend a.pk-button;
padding: 2rem 4rem;
&.pk-button {
padding: 0.5rem 1rem;
}
&.pk-big-button {
padding: 2rem 4rem;
}
}
.gru-content div.cell {