16523 re-enable table row background colors

This commit is contained in:
Arthur Hanson 2024-06-26 14:34:40 -07:00
parent c506f60f12
commit 027e2a1f8d
2 changed files with 9 additions and 0 deletions

Binary file not shown.

View File

@ -24,3 +24,12 @@
@import 'custom/interfaces'; @import 'custom/interfaces';
@import 'custom/markdown'; @import 'custom/markdown';
@import 'custom/misc'; @import 'custom/misc';
table tbody {
@each $color, $value in $theme-colors {
tr.#{$color} {
background-color: rgba($value, 0.15);
border-color: $gray-500;
}
}
}