style-elements
style-elements copied to clipboard
Using `full` as the first element of a column
Description
Given we are rendering an element followed by a column containing a full 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.
column () []
[ empty
, column ()
[ full () [] empty
, empty
]
]
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 nested column.

Instead there should be no influence on the header and it should look like this:

(Note: occuring on Chrome 59)