27 lines
508 B
SCSS
27 lines
508 B
SCSS
%table th,
|
|
%table td {
|
|
border-bottom: $decor-border-100;
|
|
}
|
|
%table th {
|
|
border-color: $gray-300;
|
|
}
|
|
%table td {
|
|
border-color: $gray-200;
|
|
color: $gray-500;
|
|
}
|
|
%table th,
|
|
%table td strong {
|
|
color: $gray-600;
|
|
}
|
|
/* TODO: Add to native selector `tbody th` - will involve moving all
|
|
* current th's to `thead th` and changing the templates
|
|
* at whichpoint we can probably remove the %table a selector from here
|
|
*/
|
|
%table a,
|
|
%tbody-th {
|
|
color: $gray-900;
|
|
}
|
|
%table td:first-child {
|
|
@extend %tbody-th;
|
|
}
|