Tentatives infructueuses de régler le problème des débordements

pull/1/head
Jean-Christophe Jameux 3 years ago
parent 9b76010418
commit 2eff303b95
  1. 11
      src/CalculateurDeNotes.elm

@ -160,11 +160,9 @@ view model =
, height fill , height fill
, width fill , width fill
, scrollbars , scrollbars
, clip
] ]
[ Input.multiline [ Input.multiline
[ height fill [ height <| maximum 300 fill
, clip
, scrollbars , scrollbars
, width fill , width fill
, Background.color <| couleurUI <| couleurArrierePlan , Background.color <| couleurUI <| couleurArrierePlan
@ -186,8 +184,7 @@ view model =
, spellcheck = False , spellcheck = False
} }
, Input.multiline , Input.multiline
[ height fill [ height <| maximum 300 fill
, clip
, scrollbars , scrollbars
, width fill , width fill
, Background.color <| couleurUI <| couleurArrierePlan , Background.color <| couleurUI <| couleurArrierePlan
@ -209,8 +206,7 @@ view model =
, spellcheck = False , spellcheck = False
} }
, Input.multiline , Input.multiline
[ height fill [ height <| maximum 300 fill
, clip
, scrollbars , scrollbars
, width fill , width fill
, Background.color <| couleurUI <| couleurArrierePlan , Background.color <| couleurUI <| couleurArrierePlan
@ -236,6 +232,7 @@ view model =
[ spacing petitEspacement [ spacing petitEspacement
, height fill , height fill
, width fill , width fill
, scrollbars
] ]
[ text <| [ text <|
"Moyenne : " "Moyenne : "

Loading…
Cancel
Save