ai-course/app/backend/src/pages/textbook/chapter.module.less

33 lines
697 B
Plaintext

.chapter-main-body {
width: 100%;
height: auto;
min-height: calc(100vh - 172px);
float: left;
box-sizing: border-box;
border-radius: 12px;
display: flex;
flex-direction: row;
overflow: hidden;
.left-box {
width: 300px;
float: left;
height: auto;
min-height: calc(100vh - 172px);
border-right: 2px solid #f6f6f6;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 6px 20px rgba(0, 0, 0, 0.2);
box-sizing: border-box;
padding: 24px 16px;
background-color: white;
}
.right-box {
width: calc(100% - 354px);
float: left;
height: auto;
min-height: calc(100vh - 172px);
background: #f9fafb;
box-sizing: border-box;
}
}