index.scss 669 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .header {
  2. display: flex;
  3. padding: 16px 16px 0px 16px;
  4. margin-bottom: 16px;
  5. border-radius: 4px;
  6. background: white;
  7. box-shadow: 0 0 12px rgb(0 0 0 / 5%);
  8. }
  9. .footer {
  10. flex: 1;
  11. display: flex;
  12. padding: 16px;
  13. flex-direction: column;
  14. border-radius: 4px;
  15. overflow: hidden;
  16. background: white;
  17. box-shadow: 0 0 12px rgb(0 0 0 / 5%);
  18. position: relative;
  19. box-sizing: border-box;
  20. .util {
  21. margin-bottom: 15px;
  22. display: flex;
  23. justify-content: flex-end;
  24. flex-shrink: 0;
  25. }
  26. .table-inner {
  27. flex: 1;
  28. position: relative;
  29. }
  30. .table {
  31. position: absolute;
  32. left: 0;
  33. top: 0;
  34. width: 100%;
  35. height: 100%;
  36. }
  37. }