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:
Emi Matchu 2020-09-10 02:37:06 -07:00
parent 0975a94511
commit c7e2daa07b

View file

@ -66,10 +66,9 @@ function SpeciesColorPicker({
? { ? {
// Visually the disabled state is the same as the normal state, but // 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 // 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 // of content is rough!
// harder to style in Chakra.) opacity: "1 !important",
opacity: 1, cursor: "wait !important",
cursor: "wait",
} }
: {}; : {};