Files
LangBot/web/src/app/home/layout.module.css

32 lines
654 B
CSS
Raw Normal View History

/* 主布局容器 */
.homeLayoutContainer {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: row;
2025-05-09 17:47:50 +08:00
background-color: #eee;
}
/* 主内容区域 */
.main {
2025-05-09 17:47:50 +08:00
background-color: #fafafa;
flex: 1;
display: flex;
flex-direction: column;
/* height: 100vh; */
width: calc(100% - 1.2rem);
height: calc(100% - 1.2rem);
overflow: hidden;
border-radius: 1.5rem 0 0 1.5rem;
margin-left: 0.6rem;
margin-top: 0.6rem;
2025-05-09 18:52:04 +08:00
box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.05);
2025-05-09 17:47:50 +08:00
}
.mainContent {
2025-05-07 22:59:11 +08:00
padding: 1.5rem;
padding-left: 2rem;
2025-05-09 17:47:50 +08:00
flex: 1;
overflow-y: auto;
background-color: #fafafa;
}