diff options
Diffstat (limited to 'front')
-rw-r--r-- | front/src/Main.elm | 10 |
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) |