fix visual regression on homepage
I think the Chakra upgrades made these overrides stop working? added !important so that they happen again! The regression meant the homepage looked worse, always having the selects fade in :/
This commit is contained in:
parent
0975a94511
commit
c7e2daa07b
1 changed files with 3 additions and 4 deletions
|
@ -66,10 +66,9 @@ function SpeciesColorPicker({
|
|||
? {
|
||||
// Visually the disabled state is the same as the normal state, but
|
||||
// with a wait cursor. We don't expect this to take long, and the flash
|
||||
// of content is rough! (The caret still flashes, but that's small and
|
||||
// harder to style in Chakra.)
|
||||
opacity: 1,
|
||||
cursor: "wait",
|
||||
// of content is rough!
|
||||
opacity: "1 !important",
|
||||
cursor: "wait !important",
|
||||
}
|
||||
: {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue