_table.scss 402 B

123456789101112131415161718192021
  1. .wp-block-table.is-style-stripes,
  2. .wp-block-table {
  3. th {
  4. font-weight: 400;
  5. }
  6. tbody td { // tbody adds the specificity needed to override the default Gutenberg styles
  7. border-bottom-width: 0;
  8. border-top-width: 0;
  9. vertical-align: top;
  10. border-color: var(--wp--preset--color--primary);
  11. }
  12. tr:first-child td {
  13. border-top-width: 1px;
  14. }
  15. tr:last-child td {
  16. border-bottom-width: 1px;
  17. }
  18. }