From 08dc0e1a71bd993d673ee3c8dc59fc101f714e6c Mon Sep 17 00:00:00 2001 From: Nick Date: Sun, 8 Dec 2024 22:17:12 -0600 Subject: [PATCH] feat: almost finished mvp --- frontend/src/Contact/Helpers.elm | 12 ++++++++++-- frontend/src/Products/Helpers.elm | 17 +++++------------ 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/frontend/src/Contact/Helpers.elm b/frontend/src/Contact/Helpers.elm index 866186c..5108b93 100755 --- a/frontend/src/Contact/Helpers.elm +++ b/frontend/src/Contact/Helpers.elm @@ -159,7 +159,9 @@ instructionBody = ] ) [ el - (orangeFormat ++ [ F.size 18 ]) + [ F.color colourTheme.textLightOrange + , F.size 18 + ] <| text "Terms and Conditions" ] @@ -202,7 +204,13 @@ instructionBody = } ] ) - [ el (orangeFormat ++ [ F.size 18 ]) <| text "Additional Clarifications" ] + [ el + [ F.color colourTheme.textLightOrange + , F.size 18 + ] + <| + text "Additional Clarifications" + ] , paragraph (paragraphFormat ++ [ F.alignLeft diff --git a/frontend/src/Products/Helpers.elm b/frontend/src/Products/Helpers.elm index 7d9c53f..e2987b8 100755 --- a/frontend/src/Products/Helpers.elm +++ b/frontend/src/Products/Helpers.elm @@ -4,6 +4,7 @@ import Config.CardFormat exposing (..) import Config.Colour exposing (..) import Config.Format exposing (..) import Config.StrengthBar exposing (..) +import Config.Style.Svgs exposing (nutriDexLogo) import Config.ToolTip exposing (..) import Effect exposing (Effect) import Element as E exposing (..) @@ -148,13 +149,9 @@ featureList nutridex = ] [ row [ centerX + , E.width <| px 250 ] - [ E.image - [ D.rounded 20 - , clip - , E.width <| px 250 - ] - { src = "assets/nutridex.png", description = "" } + [ html nutriDexLogo ] , row [ D.width 5 @@ -224,13 +221,9 @@ featureListMobile nutridex = ] [ row [ centerX + , E.width <| px 150 ] - [ E.image - [ D.rounded 20 - , clip - , E.width <| px 150 - ] - { src = "assets/nutridex.png", description = "" } + [ html nutriDexLogo ] , row [ D.width 5