Browse Source

fix(Station): container height was incorrect, causing the footer to be half shown on desktop

Kristian Vos 3 years ago
parent
commit
febad102a5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frontend/src/pages/Station/index.vue

+ 1 - 1
frontend/src/pages/Station/index.vue

@@ -2145,7 +2145,7 @@ export default {
 #station-outer-container {
 	margin: 0 auto;
 	padding: 20px 40px;
-	min-height: calc(100vh - 64px - 130px);
+	min-height: calc(100vh - 64px);
 	width: 100%;
 	max-width: 1800px;
 	display: flex;