Files
OfficialSite/assets/styles/objects/_table.scss
2017-02-08 11:43:28 -05:00

16 lines
439 B
SCSS

// ==========================================================================
// Objects / Tables
// ==========================================================================
.o-table {
width: 100%;
/**
* Force all cells within a table to occupy the same width as each other.
*
* @link https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout#Values
*/
&.-fixed{
table-layout: fixed;
}
}