diff options
Diffstat (limited to 'frontend/src/components/pages/common.scss')
-rw-r--r-- | frontend/src/components/pages/common.scss | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/frontend/src/components/pages/common.scss b/frontend/src/components/pages/common.scss new file mode 100644 index 0000000..fcf5c20 --- /dev/null +++ b/frontend/src/components/pages/common.scss @@ -0,0 +1,16 @@ +.page { + position: relative; + display: flex; + flex-direction: column; + height: 100vh; + + .page-header, + .page-footer { + flex: 0; + } + + .page-content { + overflow: hidden; + flex: 1; + } +} |