补充丢失的样式文件。
This commit is contained in:
parent
42cba4f19e
commit
d6aa2782bf
11
.gitignore
vendored
11
.gitignore
vendored
@ -68,7 +68,8 @@ $RECYCLE.BIN/
|
|||||||
.LSOverride
|
.LSOverride
|
||||||
|
|
||||||
# Icon must end with two \r
|
# Icon must end with two \r
|
||||||
Icon
|
Icon
|
||||||
|
|
||||||
|
|
||||||
# Thumbnails
|
# Thumbnails
|
||||||
._*
|
._*
|
||||||
@ -200,7 +201,8 @@ fabric.properties
|
|||||||
.LSOverride
|
.LSOverride
|
||||||
|
|
||||||
# Icon must end with two \r
|
# Icon must end with two \r
|
||||||
Icon
|
Icon
|
||||||
|
|
||||||
|
|
||||||
# Thumbnails
|
# Thumbnails
|
||||||
._*
|
._*
|
||||||
@ -1022,8 +1024,11 @@ _site/
|
|||||||
/vendor
|
/vendor
|
||||||
|
|
||||||
# Specific ignore for GitHub Pages
|
# Specific ignore for GitHub Pages
|
||||||
# GitHub Pages will always use its own deployed version of pages-gem
|
# GitHub Pages will always use its own deployed version of pages-gem
|
||||||
# This means GitHub Pages will NOT use your Gemfile.lock and therefore it is
|
# This means GitHub Pages will NOT use your Gemfile.lock and therefore it is
|
||||||
# counterproductive to check this file into the repository.
|
# counterproductive to check this file into the repository.
|
||||||
# Details at https://github.com/github/pages-gem/issues/768
|
# Details at https://github.com/github/pages-gem/issues/768
|
||||||
Gemfile.lock
|
Gemfile.lock
|
||||||
|
|
||||||
|
# Fix extra-ignoring for kernel module file pattern on CSS Module files.
|
||||||
|
!*.module.css
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user