mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
4484d07d76
* docs(components): [layout] unocss cover * docs(components): [layout] unocss cover
26 lines
542 B
Vue
26 lines
542 B
Vue
<template>
|
|
<el-row :gutter="20">
|
|
<el-col :span="6"><div class="grid-content ep-bg-purple" /></el-col>
|
|
<el-col :span="6"><div class="grid-content ep-bg-purple" /></el-col>
|
|
<el-col :span="6"><div class="grid-content ep-bg-purple" /></el-col>
|
|
<el-col :span="6"><div class="grid-content ep-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>
|