Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Accurate sizes: Get accurate sizes base on ancestor block context #1818
base: feature/1511-incorporate-layout-constraints-from-ancestors
Are you sure you want to change the base?
Accurate sizes: Get accurate sizes base on ancestor block context #1818
Changes from all commits
ff1a7f2
a474219
50f3362
bfed071
255fc19
6a80b35
aecf9c9
90dc20f
82d7364
3a51aed
bba4997
f784475
454c669
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it allowed to have relative values like
%
in thesizes
attribute? Or what is the rationale for having thismin()
value here?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See #1737 for context why it was added.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense. From that perspective though, wouldn't we be able to also use non-
px
values for the multiplication above? Right now thecontainer_relative_width
is only used if the unit ispx
. For example, if someone specified16em
andcontainer_relative_width
was0.5
, wouldn't we still be able to multiply and then use8em
?For which units can this
min()
function be used in thesizes
attribute? I would expect it to be forem
,rem
etc - but what about%
? Since%
needs to know the container width, I wonder whether that's even supported or not.@joemcgill Maybe you have additional context?