mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
2b47933c8f
* fix(theme-chalk): components details when dark * fix(theme-chalk): remove step icon bg color
35 lines
954 B
Vue
35 lines
954 B
Vue
<template>
|
|
<el-row :gutter="20">
|
|
<el-col :span="16"><div class="grid-content bg-purple" /></el-col>
|
|
<el-col :span="8"><div class="grid-content bg-purple" /></el-col>
|
|
</el-row>
|
|
<el-row :gutter="20">
|
|
<el-col :span="8"><div class="grid-content bg-purple" /></el-col>
|
|
<el-col :span="8"><div class="grid-content bg-purple" /></el-col>
|
|
<el-col :span="4"><div class="grid-content bg-purple" /></el-col>
|
|
<el-col :span="4"><div class="grid-content bg-purple" /></el-col>
|
|
</el-row>
|
|
<el-row :gutter="20">
|
|
<el-col :span="4"><div class="grid-content bg-purple" /></el-col>
|
|
<el-col :span="16"><div class="grid-content bg-purple" /></el-col>
|
|
<el-col :span="4"><div class="grid-content bg-purple" /></el-col>
|
|
</el-row>
|
|
</template>
|
|
|
|
<style>
|
|
.el-row {
|
|
margin-bottom: 20px;
|
|
}
|
|
.el-row:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
.el-col {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.grid-content {
|
|
border-radius: 4px;
|
|
min-height: 36px;
|
|
}
|
|
</style>
|