docs(components): check docs before stable (#5740)

This commit is contained in:
C.Y.Kun
2022-01-31 23:43:56 +08:00
committed by GitHub
parent 4501b6dd66
commit b46bdae9e6
103 changed files with 1244 additions and 767 deletions

View File

@ -54,45 +54,42 @@
</div>
</template>
<style lang="scss">
.common-layout {
.el-header,
.el-footer {
background-color: #b3c0d1;
color: var(--el-text-color-primary);
text-align: center;
line-height: 60px;
}
<style scoped>
.common-layout .el-header,
.common-layout .el-footer {
background-color: #b3c0d1;
color: var(--el-text-color-primary);
text-align: center;
line-height: 60px;
}
.common-layout .el-footer {
line-height: 60px;
}
.el-footer {
line-height: 60px;
}
.common-layout .el-aside {
background-color: #d3dce6;
color: var(--el-text-color-primary);
text-align: center;
line-height: 200px;
}
.el-aside {
background-color: #d3dce6;
color: var(--el-text-color-primary);
text-align: center;
line-height: 200px;
}
.common-layout .el-main {
background-color: #e9eef3;
color: var(--el-text-color-primary);
text-align: center;
line-height: 160px;
}
.el-main {
background-color: #e9eef3;
color: var(--el-text-color-primary);
text-align: center;
line-height: 160px;
}
.common-layout > .el-container {
margin-bottom: 40px;
}
body > .el-container {
margin-bottom: 40px;
}
.common-layout .el-container:nth-child(5) .el-aside,
.common-layout .el-container:nth-child(6) .el-aside {
line-height: 260px;
}
.el-container:nth-child(5) .el-aside,
.el-container:nth-child(6) .el-aside {
line-height: 260px;
}
.el-container:nth-child(7) .el-aside {
line-height: 320px;
}
.common-layout .el-container:nth-child(7) .el-aside {
line-height: 320px;
}
</style>