_tables.scss 546 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* Tables */
  2. .table {
  3. margin-bottom: 0;
  4. thead {
  5. th {
  6. border-top: 0;
  7. border-bottom-width: 1px;
  8. font-family: $type1-medium;
  9. font-weight: initial;
  10. i{
  11. margin-left: 0.325rem;
  12. }
  13. }
  14. }
  15. th,
  16. td {
  17. vertical-align: middle;
  18. font-size: $default-font-size;
  19. line-height: 1;
  20. img {
  21. width: 36px;
  22. height: 36px;
  23. border-radius: 100%;
  24. }
  25. .badge {
  26. margin-bottom: 0;
  27. }
  28. }
  29. &.table-borderless{
  30. border: none;
  31. tr,td,th{
  32. border: none;
  33. }
  34. }
  35. }