1234567891011121314151617181920212223242526 |
- .table-header {
- background-color: #fff;
- margin-bottom: 0.75rem;
- border: 1px solid var(--el-border-color-light);
- border-radius: 8px;
- padding: 20px;
- display: flex;
- align-items: center;
- }
- .card {
- flex: 1 1 0%;
- transition: height 1.25s ease-in-out;
- box-sizing: border-box;
- padding: 20px;
- overflow-x: hidden;
- background-color: var(--el-fill-color-blank);
- border: 1px solid var(--el-border-color-light);
- border-radius: 8px;
- // box-shadow: 0 0 12px rgb(0 0 0 / 5%);
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
|