Skip to content

Commit 7514048

Browse files
committed
fix styles height
1 parent 1df4e5e commit 7514048

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

src/styles/app-stream.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@import './styles.scss';
22
#app {
33
width: 100%;
4-
// commit for landing page //height: calc(100vh - 65px);
4+
height: 100%;
55
position: absolute;
66
background: $general-color;
77
color: $neutral-color;

src/styles/dashboard.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.dashboard {
2-
height: calc(100vh - 65px);
2+
height: calc(100% - 65px);
33
margin: auto;
44
}
55

src/views/Dashboard.vue

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<template>
2-
<div>
2+
<div class="dashboard">
33
<button-pause />
4-
<div class="dashboard">
5-
<world-map />
6-
<footer-stats />
7-
</div>
4+
<world-map />
5+
<footer-stats />
86
</div>
97
</template>
108

0 commit comments

Comments
 (0)