index.scss 573 B

1234567891011121314151617181920212223242526
  1. .table-header {
  2. background-color: #fff;
  3. margin-bottom: 0.75rem;
  4. border: 1px solid var(--el-border-color-light);
  5. border-radius: 8px;
  6. padding: 20px;
  7. display: flex;
  8. align-items: center;
  9. }
  10. .card {
  11. flex: 1 1 0%;
  12. transition: height 1.25s ease-in-out;
  13. box-sizing: border-box;
  14. padding: 20px;
  15. overflow-x: hidden;
  16. background-color: var(--el-fill-color-blank);
  17. border: 1px solid var(--el-border-color-light);
  18. border-radius: 8px;
  19. // box-shadow: 0 0 12px rgb(0 0 0 / 5%);
  20. display: flex;
  21. flex-direction: column;
  22. justify-content: space-between;
  23. }