mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-08-15 00:15:57 +08:00
26 lines
455 B
CSS
26 lines
455 B
CSS
.loading-panel {
|
|
padding: 100px;
|
|
height: 100%;
|
|
}
|
|
|
|
.cards-in-group {
|
|
column-count: 2; /*numbers of columns */
|
|
column-gap: 1em;
|
|
}
|
|
.cards-not-group {
|
|
column-count: 1; /* numbers of columns */
|
|
column-gap: 1em;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.card {
|
|
/* padding: 10px; */
|
|
width: 100% !important;
|
|
transition: all 100ms ease-in-out;
|
|
display: inline-block;
|
|
perspective: 1000;
|
|
backface-visibility: hidden;
|
|
}
|
|
.el-card {
|
|
width: 100% !important;
|
|
} |