Files
teach_sys_Demo/src/components/Layout/index.css

16 lines
289 B
CSS
Raw Normal View History

2025-08-15 16:16:41 +08:00
/* 布局相关样式 */
.app-layout {
display: flex;
min-height: 100vh;
width: 100%;
2025-08-18 14:18:11 +08:00
background-color: #f2f3f5;
2025-08-15 16:16:41 +08:00
}
/* 主内容区域 */
.main-content {
flex: 1;
overflow: hidden;
transition: margin-left 0.3s ease;
display: flex;
flex-direction: column;
}