open-consul/ui-v2/app/styles/components/table/skin.scss

24 lines
373 B
SCSS

th,
td {
border-bottom: $decor-border-100;
}
th {
border-color: $gray-300;
}
td {
border-color: $gray-200;
color: $gray-500;
}
th,
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
%tbody-th {
color: $gray-900;
}
td:first-child {
@extend %tbody-th;
}