框架样式修改

This commit is contained in:
zzyuan 2025-06-11 10:07:25 +08:00
parent c85262f492
commit 04d5cb11ef
2 changed files with 3 additions and 3 deletions

View File

@ -121,7 +121,7 @@ aside {
//main-container全局样式 //main-container全局样式
.app-container { .app-container {
height: calc(100vh - 84px); height: 84vh;
padding: 10px; padding: 10px;
box-sizing: border-box; box-sizing: border-box;
display: flex; display: flex;

View File

@ -29,7 +29,7 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.app-main { .app-main {
/* 50= navbar 50 */ /* 50= navbar 50 */
height: 85vh; max-height: 85vh;
// overflow-y: auto; // overflow-y: auto;
width: 100%; width: 100%;
position: relative; position: relative;
@ -43,7 +43,7 @@ export default {
.hasTagsView { .hasTagsView {
.app-main { .app-main {
/* 84 = navbar + tags-view = 50 + 34 */ /* 84 = navbar + tags-view = 50 + 34 */
height: 85vh; max-height: 85vh;
overflow-y: auto; overflow-y: auto;
} }