Open nimser opened 7 years ago
Given we are rendering an element followed by a column containing a full as its first element the rendering will break/be inconsistent.
column
full
This is the pattern that has been identified to cause issues. Replace empty by any element.
empty
column () [] [ empty , column () [ full () [] empty , empty ] ]
This Ellie SSCCE makes the issue apparent.
In it, you can see that the grey header is overlapped by the full element of the nested column.
Instead there should be no influence on the header and it should look like this:
(Note: occuring on Chrome 59)
Description
Given we are rendering an element followed by a
column
containing afull
as its first element the rendering will break/be inconsistent.Illustration
This is the pattern that has been identified to cause issues. Replace
empty
by any element.Full SSCCE
This Ellie SSCCE makes the issue apparent.
In it, you can see that the grey header is overlapped by the
full
element of the nestedcolumn
.Instead there should be no influence on the header and it should look like this:
(Note: occuring on Chrome 59)