_tables.scss 237 B

123456789101112131415161718
  1. .table {
  2. border-collapse: separate;
  3. td {
  4. touch-action: manipulation;
  5. vertical-align: middle;
  6. }
  7. thead th {
  8. border-bottom: 0;
  9. }
  10. }
  11. .table-striped {
  12. tbody tr:nth-of-type(odd) {
  13. background-color: $bg-one;
  14. }
  15. }