feat: standardized formatting conventions across pages

This commit is contained in:
Nick 2024-11-27 23:06:00 -06:00
parent ead41f0ed0
commit 5e25267fbe
3 changed files with 39 additions and 62 deletions

View file

@ -169,14 +169,19 @@ myTooltip str =
, D.rounded 5
, D.width 2
, F.center
, clip
, E.width <| px 300
, D.color colourTheme.highlightText
, F.size 15
, D.shadow
{ offset = ( 0, 3 ), blur = 6, size = 0, color = rgba 0 0 0 0.32 }
, E.htmlAttribute (H.style "position" "fixed")
, E.htmlAttribute (H.style "z-index" "9999")
, F.color colourTheme.nonHighlightedText
, F.regular
, F.size 14
]
(text str)
|> el [ F.color colourTheme.nonHighlightedText, F.regular, F.size 14 ]
tooltip : (Element msg -> Attribute msg) -> Element Never -> Attribute msg