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
28 lines
630 B
Vue
28 lines
630 B
Vue
<template>
|
|
<el-row :gutter="10">
|
|
<el-col :xs="8" :sm="6" :md="4" :lg="3" :xl="1"
|
|
><div class="grid-content bg-purple"
|
|
/></el-col>
|
|
<el-col :xs="4" :sm="6" :md="8" :lg="9" :xl="11"
|
|
><div class="grid-content bg-purple-light"
|
|
/></el-col>
|
|
<el-col :xs="4" :sm="6" :md="8" :lg="9" :xl="11"
|
|
><div class="grid-content bg-purple"
|
|
/></el-col>
|
|
<el-col :xs="8" :sm="6" :md="4" :lg="3" :xl="1"
|
|
><div class="grid-content bg-purple-light"
|
|
/></el-col>
|
|
</el-row>
|
|
</template>
|
|
|
|
<style>
|
|
.el-col {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.grid-content {
|
|
border-radius: 4px;
|
|
min-height: 36px;
|
|
}
|
|
</style>
|