data-table.component.scss 468 B

12345678910111213141516171819202122232425262728293031323334
  1. @import "variables";
  2. :host {
  3. display: block;
  4. max-width: 100%;
  5. overflow: auto;
  6. }
  7. thead th {
  8. position: sticky;
  9. top: 24px;
  10. z-index: 1;
  11. &.expand {
  12. width: 100%;
  13. }
  14. }
  15. .table-footer {
  16. display: flex;
  17. align-items: baseline;
  18. justify-content: space-between;
  19. }
  20. .empty-state {
  21. text-align: center;
  22. padding: 60px;
  23. color: $color-grey-4;
  24. .empty-label {
  25. margin-top: 12px;
  26. font-size: 22px;
  27. }
  28. }