0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-24 23:49:45 -05:00

🐛 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,11 +259,10 @@
// SUBMIT-BUTTON
.button-submit {
@extend .button-primary;
}
:disabled {
@extend .button-disabled;
min-height: $s-32;
&:disabled {
@extend .button-disabled;
min-height: $s-32;
}
}
// MULTI INPUT

View file

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