data-table.component.scss 353 B

123456789101112131415161718192021222324
  1. @import "variables";
  2. thead th {
  3. position: sticky;
  4. top: 24px;
  5. z-index: 1;
  6. }
  7. .table-footer {
  8. display: flex;
  9. align-items: baseline;
  10. justify-content: space-between;
  11. }
  12. .empty-state {
  13. text-align: center;
  14. padding: 60px;
  15. color: $color-grey-4;
  16. .empty-label {
  17. margin-top: 12px;
  18. font-size: 22px;
  19. }
  20. }