style-elements icon indicating copy to clipboard operation
style-elements copied to clipboard

Using `full` as the first element of a column

Open nimser opened this issue 8 years ago • 0 comments

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)

nimser avatar Jul 25 '17 13:07 nimser