// Zebra-striping
//
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
.table-striped {
  >tbody>tr:nth-of-type(odd) {
    background-color: $table-bg-accent;
  }
}
