Fix border-radius for modal in case no .modal-foot exists

This commit is contained in:
Florian Scholdei
2019-10-29 16:15:25 +01:00
parent cd4874f4d3
commit b5d30e53e4

View File

@@ -145,6 +145,9 @@ $danger-25: scale-color($danger, $lightness: 75%);
.has-text-warning { .has-text-warning {
color: #ffb600 !important; color: #ffb600 !important;
} }
.has-text-warning-invert {
color: $warning-invert;
}
.has-text-blue-light { .has-text-blue-light {
color: $blue-light !important; color: $blue-light !important;
@@ -215,9 +218,6 @@ $danger-25: scale-color($danger, $lightness: 75%);
background-color: $danger-25; background-color: $danger-25;
} }
.has-background-warning-invert {
background-color: $warning-invert;
}
.has-background-blue-light { .has-background-blue-light {
background-color: $blue-light; background-color: $blue-light;
} }
@@ -800,8 +800,12 @@ form .field:not(.is-grouped) {
// modal // modal
.modal { .modal {
.modal-card-foot { .modal-card {
justify-content: flex-end; // pulled-right border-radius: 6px;
.modal-card-foot {
justify-content: flex-end; // pulled-right
}
} }
} }