Commit bfe2dc41 authored by boomsb's avatar boomsb

Update tables.less

Fixed Table cell sizing with multiple classes by using *= instead of ^=
parent b5698361
......@@ -137,14 +137,14 @@ th {
//
// Reset default table behavior
table col[class^="col-"] {
table col[class*="col-"] {
float: none;
display: table-column;
}
table {
td,
th {
&[class^="col-"] {
&[class*="col-"] {
float: none;
display: table-cell;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment