dnomak/flexiblegs-scss-plus

add class .*-table and .*-not-table

dnomak opened this issue · 1 comments

example

.xl-table {
  display: table;
  table-layout: fixed;
}
.xl-table > * {
  display: table-cell;
}
.xl-not-table {
  display: block;
  table-layout: auto;
}
.xl-not-table > * {
  display: inline-block;
}