mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 20:27:44 +08:00
2b47933c8f
* fix(theme-chalk): components details when dark * fix(theme-chalk): remove step icon bg color
42 lines
866 B
Vue
42 lines
866 B
Vue
<template>
|
|
<div class="alignment-container">
|
|
<el-space>
|
|
string
|
|
<el-button> button </el-button>
|
|
<el-card>
|
|
<template #header> header </template>
|
|
body
|
|
</el-card>
|
|
</el-space>
|
|
</div>
|
|
<div class="alignment-container">
|
|
<el-space alignment="flex-start">
|
|
string
|
|
<el-button> button </el-button>
|
|
<el-card>
|
|
<template #header> header </template>
|
|
body
|
|
</el-card>
|
|
</el-space>
|
|
</div>
|
|
<div class="alignment-container">
|
|
<el-space alignment="flex-end">
|
|
string
|
|
<el-button> button </el-button>
|
|
<el-card>
|
|
<template #header> header </template>
|
|
body
|
|
</el-card>
|
|
</el-space>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
.alignment-container {
|
|
width: 240px;
|
|
margin-bottom: 20px;
|
|
padding: 8px;
|
|
border: 1px solid var(--el-border-color);
|
|
}
|
|
</style>
|