🐛 Fix wrong css selector applied globally and affecting the palette

This commit is contained in:
Belén Albeza 2024-05-30 15:48:06 +02:00
parent de7880b4a2
commit 8f0fd0a6e2
2 changed files with 6 additions and 6 deletions

View file

@ -259,12 +259,11 @@
// SUBMIT-BUTTON // SUBMIT-BUTTON
.button-submit { .button-submit {
@extend .button-primary; @extend .button-primary;
} &:disabled {
:disabled {
@extend .button-disabled; @extend .button-disabled;
min-height: $s-32; min-height: $s-32;
} }
}
// MULTI INPUT // MULTI INPUT
.custom-multi-input { .custom-multi-input {

View file

@ -62,7 +62,8 @@
var(--palette-button-shadow-final) 100% var(--palette-button-shadow-final) 100%
); );
} }
&.disabled ::after {
&:disabled::after {
background-image: none; background-image: none;
} }