aboutsummaryrefslogtreecommitdiff
path: root/front/src
diff options
context:
space:
mode:
authorGuillermo Ramos2025-03-06 19:29:06 +0100
committerGuillermo Ramos2025-03-06 23:26:15 +0100
commit2a493c121edefd21d2c25f6a175fce53d3e082c1 (patch)
tree4657844d97e83b9fa863f5d3c75af20b74ed373c /front/src
parent53ea8f5348c7717decbb559b1a41ad120146a6ed (diff)
downloadhiccup-2a493c121edefd21d2c25f6a175fce53d3e082c1.tar.gz
Small style fixes
Diffstat (limited to 'front/src')
-rw-r--r--front/src/Main.elm10
1 files changed, 5 insertions, 5 deletions
diff --git a/front/src/Main.elm b/front/src/Main.elm
index 7da9ffa..7f25043 100644
--- a/front/src/Main.elm
+++ b/front/src/Main.elm
@@ -370,7 +370,7 @@ specsView simSpecsRaw =
[ div [ class "" ]
[ text "Initial contribution: "
, input
- [ class "w-[100px] border border-lime-500 border-2 px-2"
+ [ class "w-[100px] border border-lime-500 border-2 px-2 focus:outline focus:outline-lime-500"
, Html.Attributes.min "0"
, Html.Attributes.max totalValueTxt
, value initialTxt
@@ -381,7 +381,7 @@ specsView simSpecsRaw =
, div [ class "ml-4" ]
[ text " ("
, input
- [ class "w-[50px] border border-lime-500 border-2 px-2"
+ [ class "w-[55px] border border-lime-500 border-2 px-2 focus:outline focus:outline-lime-500"
, Html.Attributes.min "10"
, Html.Attributes.max "100"
, value financedRateTxt
@@ -394,7 +394,7 @@ specsView simSpecsRaw =
, div [ class "my-1" ]
[ text "Interest rate: "
, input
- [ class "w-[80px] border border-lime-500 border-2 px-2"
+ [ class "w-[80px] border border-lime-500 border-2 px-2 focus:outline focus:outline-lime-500"
, Html.Attributes.min "0"
, Html.Attributes.max "100"
, value i1Txt
@@ -492,10 +492,10 @@ quotaView m { period, payed, pending_principal } =
)
[ text
(if yearExpanded then
- "▼ "
+ "− "
else
- "▶ "
+ "+ "
)
]
, text (String.fromInt year)