查缺补漏,规范命名

This commit is contained in:
xiangheng
2024-10-25 13:26:23 +08:00
parent bdac94a6b3
commit ca33912c94
12 changed files with 37 additions and 19 deletions

View File

@@ -51,9 +51,17 @@ const settingStore = useSettingStore()
<style lang="scss">
.navbar {
height: var(--navbar-height);
@apply flex px-2 bg-body;
display: flex;
padding-left: 8px;
padding-right: 8px;
background-color: var(--el-bg-color);
.navbar-item {
@apply h-full flex justify-center items-center hover:bg-page;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: var(--el-bg-color-page);
}
}
</style>