From 1a426736a77acc67e6231a211b46b8bb9268efe3 Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 2 Jan 2025 14:12:10 -0600 Subject: [PATCH] feat: tidying up --- frontend/src/Config/Pages/Contact/Records.elm | 0 frontend/src/Pages/Debate/Cucklist.elm | 19 ++++++++++--------- 2 files changed, 10 insertions(+), 9 deletions(-) mode change 100644 => 100755 frontend/src/Config/Pages/Contact/Records.elm diff --git a/frontend/src/Config/Pages/Contact/Records.elm b/frontend/src/Config/Pages/Contact/Records.elm old mode 100644 new mode 100755 diff --git a/frontend/src/Pages/Debate/Cucklist.elm b/frontend/src/Pages/Debate/Cucklist.elm index 2c213d5..5bc8b49 100755 --- a/frontend/src/Pages/Debate/Cucklist.elm +++ b/frontend/src/Pages/Debate/Cucklist.elm @@ -44,7 +44,7 @@ import Config.Style.Colour.Helpers ( ThemeColor(..) , getThemeColor ) -import Config.Style.Fonts exposing (smallTextFontSize) +import Config.Style.Fonts exposing (defaultFontSize, smallTextFontSize) import Config.Style.Icons.Icons exposing (copyLink) import Config.Style.Icons.Types as TySvg exposing @@ -584,14 +584,15 @@ reductioMaker device dodge = reasonMaker : Device -> Dodge -> Element msg reasonMaker device dodge = detailFormat paragraph - [ text <| - case dodge.dodgeNicksDoxasticReason of - NoProp -> - "There is no proposition to evaluate." + [ el [ defaultFontSize ] <| + text <| + case dodge.dodgeNicksDoxasticReason of + NoProp -> + "There is no proposition to evaluate." - VagueProp -> - "The proposition is too vague to evaluate." + VagueProp -> + "The proposition is too vague to evaluate." - SpecificPropReason str -> - str + SpecificPropReason str -> + str ]