mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-02 17:48:50 -04:00
33 lines
606 B
SCSS
33 lines
606 B
SCSS
// Tables
|
|
// ==========================================================================
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
width: 100%;
|
|
|
|
th,
|
|
td {
|
|
@include core-16;
|
|
padding: em(12, 16) em(20, 16) em(9, 16) 0;
|
|
|
|
text-align: left;
|
|
color: $black;
|
|
border-bottom: 1px solid $border-colour;
|
|
}
|
|
|
|
th {
|
|
font-weight: 700;
|
|
// Right align headings for numeric content
|
|
&.numeric {
|
|
text-align: right;
|
|
}
|
|
}
|
|
|
|
// Use tabular numbers for numeric table cells
|
|
td.numeric {
|
|
@include core-16($tabular-numbers: true);
|
|
text-align: right;
|
|
}
|
|
}
|