Some table cell variants

This commit is contained in:
Andrew Croce 2018-07-17 08:46:00 -04:00
parent 8e185d1b12
commit beb9fd3074

View File

@ -6,9 +6,14 @@
table { table {
@include panel-margin; @include panel-margin;
margin-top: 0; min-width: 100%;
tr { tr {
th,
td {
white-space: nowrap;
}
th { th {
@include block-list-header; @include block-list-header;
} }
@ -23,8 +28,16 @@ table {
} }
} }
.align-right { .table-cell--align-right {
text-align: right; text-align: right;
} }
.table-cell--shrink {
width: 1%;
}
.table-cell--expand {
width: 100%;
}
} }
} }