Merge pull request #92 from dod-ccpo/ui/responsive-tables

Assorted table and layout fixes
This commit is contained in:
andrewdds
2018-07-24 14:26:39 -04:00
committed by GitHub
5 changed files with 101 additions and 69 deletions

View File

@@ -39,5 +39,42 @@
.table-cell--expand {
width: 100%;
}
.table-cell--hide-small {
display: none;
@include media($medium-screen) {
display: table-cell;
}
}
}
@at-root .panel #{&} {
tr:last-child td {
border-bottom: 0;
}
&:last-child {
margin-bottom: 0;
}
}
}
.responsive-table-wrapper {
overflow-x: auto;
@include panel-margin;
table {
margin-bottom: 0;
}
@at-root .panel #{&} {
tr:last-child td {
border-bottom: 0;
}
&:last-child {
margin-bottom: 0;
}
}
}