You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Am I overseeing something, or do the span tags that are added by elm-css cause problems when using (justify-content : space-between).
view =
div [ css myStyle ]
[ -- a span tag with css is inserted before here,
-- creating a gap in the flex container
-- when using (justify-content: space-between)
-- because space is added between the span and
-- the div with text
div [] [ text "I have unwanted space on the left" ]
, div [] [ text "Other element" ]
]
myStyle =
[ displayFlex
, width (pct 100)
, justifyContent spaceBetween
]
The text was updated successfully, but these errors were encountered:
Am I overseeing something, or do the span tags that are added by
elm-css
cause problems when using (justify-content : space-between).The text was updated successfully, but these errors were encountered: