contactlab / contactlab-ui-components

DEPRECATED - Basic UI components for ContactLab UX design pattern library
http://contactlab.github.io/contactlab-pattern-library
Apache License 2.0
30 stars 8 forks source link

IE 11 (💩) tables display issue(?) #108

Closed equinusocio closed 7 years ago

equinusocio commented 7 years ago

Responsive Table and Full Table don't work on IE 11 Windows 8.1 (It's a problem?)

screen shot 2017-01-27 at 16 03 07

equinusocio commented 7 years ago

Probably this will be a refactor because of code complexity and maintainability

equinusocio commented 7 years ago

NOTE

.responsive-table {
  display: flex;
  flex-direction: column;
}

.table .thead {
  display: flex;
  flex-basis: 100%;
}

.tbody {
  display: flex;
  flex-flow: column nowrap;
}

.responsive-table .tr {
  display: flex;
  flex: 1;
}

.responsive-table .td,
.responsive-table .th {
  flex-basis: 100%;
}