feat(Layout): Add topLeft layout

This commit is contained in:
陈凯龙
2022-01-19 16:29:35 +08:00
parent 839b6015b8
commit 71b1c5e10c
28 changed files with 571 additions and 166 deletions

View File

@@ -83,12 +83,27 @@ export default defineComponent({
</script>
<style lang="less" scoped>
:deep(.el-breadcrumb__item) {
:deep(.el-breadcrumb__item):not(:last-child) {
display: flex;
.el-breadcrumb__inner {
display: flex;
align-items: center;
color: var(--top-header-text-color);
&:hover {
color: var(--el-color-primary);
}
}
}
:deep(.el-breadcrumb__item):last-child {
.el-breadcrumb__inner {
color: rgba(255, 255, 255, 0.6);
&:hover {
color: rgba(255, 255, 255, 0.6);
}
}
}
</style>