refactor(ui): 界面升级与代码规范优化

This commit is contained in:
Ray.Hao
2026-06-18 18:38:12 +08:00
parent 288ea9b43d
commit 14035cfa4d
130 changed files with 7813 additions and 5893 deletions

21
src/styles/mixins.scss Normal file
View File

@@ -0,0 +1,21 @@
/**
* 布局 Mixins
*/
@use "variables" as *;
@mixin app-main-height-with-tags {
height: calc(100vh - $navbar-height - $tags-view-height) !important;
}
@mixin app-main-height {
height: calc(100vh - $navbar-height);
}
@mixin sidebar-scroll-height-with-logo {
height: calc(100vh - $navbar-height);
}
@mixin sidebar-scroll-height-with-toggle {
height: calc(100vh - $navbar-height - $sidebar-toggle-height);
}