追加丢失的CSS Module文件。
This commit is contained in:
23
src/pages/MainLayout.module.css
Normal file
23
src/pages/MainLayout.module.css
Normal file
@@ -0,0 +1,23 @@
|
||||
@layer page {
|
||||
.main_layout {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: flex-start;
|
||||
align-items: stretch;
|
||||
}
|
||||
.navigation_column {
|
||||
min-width: 230px;
|
||||
flex: 0 0 auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: flex-start;
|
||||
align-items: stretch;
|
||||
gap: 4px;
|
||||
}
|
||||
.content {
|
||||
flex: 1 0 auto;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user