We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Internally we represent Spacing like this:
Spacing
type Spacing = SpaceEvenly | Spacing ( Int, Int )
This matches Elm UI nicely. However we currently don't expose this in the UI. We should model the Spacing X/Y fields accordingly. A few gotchas:
row
column
textColumn
paragraph
SpaceEvenly
The reason why this hasn't been implemented yet is because it isn't clear how to design the UI. We can have:
TextColumn
So the only implemented scenario right now is the paragraph one, since it is quite an ad-hoc solution.
The text was updated successfully, but these errors were encountered:
passiomatic
No branches or pull requests
Internally we represent
Spacing
like this:This matches Elm UI nicely. However we currently don't expose this in the UI. We should model the Spacing X/Y fields accordingly. A few gotchas:
row
accepts an horizontal spacing onlycolumn
accepts a vertical spacing onlytextColumn
accepts both values and uses horizontal spacing for "floated" elements on left and rightparagraph
seems to happily ignoreSpaceEvenly
(see Para1) but works liketextColumn
(see Para2), see: https://ellie-app.com/c2jCXBTFB5Va1The reason why this hasn't been implemented yet is because it isn't clear how to design the UI. We can have:
TextColumn
node (and we need to fix this Aligned image within a text column should be wrapped by text #59 fist!)So the only implemented scenario right now is the paragraph one, since it is quite an ad-hoc solution.
The text was updated successfully, but these errors were encountered: