gel-grid icon indicating copy to clipboard operation
gel-grid copied to clipboard

You could apply a table, table-cell fallback for non-supported browsers

Open dagda1 opened this issue 6 years ago • 2 comments

Currently there is no fallback for browsers that do not support flexbox for equal.

You could make .equal this:

.gel-layout--equal {
  display: table;
  table-layout: fixed;
  width: 100%;
  display: flex;
}

.gel-layout--equal > .gel-layout__item {
    display: table-cell;
    display: -webkit-flex;
    display: flex;
} 

Would you be open to a PR that did this?

dagda1 avatar Jan 28 '18 19:01 dagda1

anybody home?

dagda1 avatar Feb 07 '18 01:02 dagda1

hey @dagda1

Sure, we're always open to PRs! Also, I like this change!

tsouk avatar Feb 07 '18 09:02 tsouk