Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
8fc288dbf6 | ||
|
ddb9bcda2f |
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -70,6 +70,7 @@ $RECYCLE.BIN/
|
||||||
# Icon must end with two \r
|
# Icon must end with two \r
|
||||||
Icon
|
Icon
|
||||||
|
|
||||||
|
|
||||||
# Thumbnails
|
# Thumbnails
|
||||||
._*
|
._*
|
||||||
|
|
||||||
|
@ -202,6 +203,7 @@ fabric.properties
|
||||||
# Icon must end with two \r
|
# Icon must end with two \r
|
||||||
Icon
|
Icon
|
||||||
|
|
||||||
|
|
||||||
# Thumbnails
|
# Thumbnails
|
||||||
._*
|
._*
|
||||||
|
|
||||||
|
@ -1027,3 +1029,5 @@ _site/
|
||||||
# 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
|
||||||
|
|
||||||
|
!*.module.css
|
||||||
|
|
|
@ -21,6 +21,6 @@ app.get('/', async () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
app.listen(3000);
|
app.listen(8000);
|
||||||
|
|
||||||
console.log(`Server running at http://${app.server?.hostname}:${app.server?.port}`);
|
console.log(`Server running at http://${app.server?.hostname}:${app.server?.port}`);
|
||||||
|
|
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…
Reference in New Issue
Block a user