mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 20:35:13 -05:00
fix: argument box scale transition working
This commit is contained in:
parent
f79e2d9fca
commit
dd9c1dbb23
3 changed files with 49 additions and 28 deletions
|
@ -13,6 +13,7 @@ type alias Theme =
|
|||
, highlightTextHover : Color
|
||||
, backgroundColour : Color
|
||||
, debugColour : Color
|
||||
, darker : Color
|
||||
}
|
||||
|
||||
|
||||
|
@ -24,4 +25,5 @@ colourTheme =
|
|||
, highlightTextHover = rgb255 120 60 0
|
||||
, backgroundColour = rgb255 40 40 40
|
||||
, debugColour = rgb255 227 28 121
|
||||
, darker = rgb255 49 50 68
|
||||
}
|
||||
|
|
|
@ -20,8 +20,9 @@ topLevelContainer =
|
|||
|
||||
pageList : List (Attribute msg)
|
||||
pageList =
|
||||
[ spacing 40
|
||||
, centerX
|
||||
[ spacing 10
|
||||
, -- Isaac yote me, fix me.
|
||||
centerX
|
||||
, centerY
|
||||
, alignTop
|
||||
, paddingEach { top = 30, bottom = 30, left = 30, right = 30 }
|
||||
|
@ -30,7 +31,7 @@ pageList =
|
|||
|
||||
transitionStyle : Attribute msg
|
||||
transitionStyle =
|
||||
htmlAttribute <| style "transition" "all .4s"
|
||||
htmlAttribute <| style "transition" "all 4s"
|
||||
|
||||
|
||||
transitionHighlightedLinkHover : Element msg -> Element msg
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue