🎨 avoid overwriting themes

This commit is contained in:
Tessa Kelly 2018-06-20 10:48:46 -07:00
parent 24f8d71c24
commit de58de8734

View File

@ -143,16 +143,16 @@ squareLabelStyles assets model colorTheme =
, verticalAlign middle , verticalAlign middle
-- Text -- Text
, color Colors.gray20
, Fonts.baseFont , Fonts.baseFont
, fontSize (px 16) , fontSize (px 16)
, Css.batch <| , Css.batch <|
-- If this is the only difference, is it worth having a color theme at all??
case colorTheme of case colorTheme of
Gray -> Gray ->
[ color Colors.gray45 ] [ color Colors.gray45 ]
Default -> Default ->
[] [ color Colors.gray20 ]
-- Focus & Hover -- Focus & Hover
, outline none , outline none