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:
parent
de7880b4a2
commit
8f0fd0a6e2
2 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -62,7 +62,8 @@
|
|||
var(--palette-button-shadow-final) 100%
|
||||
);
|
||||
}
|
||||
&.disabled ::after {
|
||||
|
||||
&:disabled::after {
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue