1
0
Fork 0

Merge pull request #2630 from hughrun/shepherd

fix sass compound selector extensions
This commit is contained in:
Mouse Reeve 2023-01-28 07:18:34 -08:00 committed by GitHub
commit e3ce12671a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,16 +6,16 @@
@use 'bulma/bulma.sass'; @use 'bulma/bulma.sass';
.shepherd-button { .shepherd-button {
@extend .button.mr-2; @extend .button, .mr-2;
} }
.shepherd-button.shepherd-button-secondary { .shepherd-button.shepherd-button-secondary {
@extend .button.is-light; @extend .button, .is-light;
} }
.shepherd-footer { .shepherd-footer {
@extend .message-body; @extend .message-body;
@extend .is-info.is-light; @extend .is-info, .is-light;
border-color: $info-light; border-color: $info-light;
border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px;
} }
@ -29,7 +29,7 @@
.shepherd-text { .shepherd-text {
@extend .message-body; @extend .message-body;
@extend .is-info.is-light; @extend .is-info, .is-light;
border-radius: 0; border-radius: 0;
} }