diff options
author | HampusM <hampus@hampusmat.com> | 2021-06-06 11:10:12 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-06-06 11:10:12 +0200 |
commit | 833c48b9ec5f5b9aa0302c557c6bf5163841100b (patch) | |
tree | 8475be39a9dda2c62e0e1bc09fa13428a9568c21 /packages/client/src | |
parent | 156d0bab2ab49d9acb7df70ac268cad42af9bbda (diff) |
Fixed issue where home view scrolls for no reason
Diffstat (limited to 'packages/client/src')
-rw-r--r-- | packages/client/src/views/Home.vue | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/client/src/views/Home.vue b/packages/client/src/views/Home.vue index 80f2e9a..305d42b 100644 --- a/packages/client/src/views/Home.vue +++ b/packages/client/src/views/Home.vue @@ -1,5 +1,5 @@ <template> - <div class="container-fluid px-0"> + <div class="container-fluid px-0 d-flex"> <HomeHeader /> <HomeProjectsHeader /> <div class="row mx-0"> @@ -76,4 +76,9 @@ ul { list-style-type: none; padding: 0; } + +.container-fluid { + flex-flow: column; + height: 100vh; +} </style> |