I'm sure I'm making a simple and idiotic error, so please have mercy.
I am trying to write inline CSS for some clojurescript elements and the following code compiles, but the expected hover color does not render.
Does anyone see what is wrong?
[:div
[bp/icon
{:icon "database"
:style {:color "#555555" :padding "10px" :background-color "rgb(250, 250, 250)" :hover "rgb(255, 63, 0)"
}}]]
EDIT:
I've also tried this approach, also with no success:
[:div {:class "bp3-button-group"}
[:div [bp/icon {:icon "database" :style {:color "#555555" :padding "10px" :background-color "rgb(250, 250, 250)" :&:hover {:background-color "#000"}
}}]
]]
```