123456789101112131415161718192021 |
- table,
- .wp-block-table {
- width: 100%;
- min-width: 240px;
- border-collapse: collapse;
- th {
- @include font-family( map-deep-get($config-heading, "font", "family") );
- }
- td,
- th {
- padding: calc( 0.5 * #{map-deep-get($config-global, "spacing", "unit")} );
- border: 1px solid;
- }
- &.is-style-stripes tbody tr:nth-child(odd) {
- background-color: #{map-deep-get($config-global, "color", "border", "light")};
- color: #{map-deep-get($config-global, "color", "foreground", "default")};
- }
- }
|