Skip to content

Commit 8a8fe8d

Browse files
committed
Redesign footer
1 parent 134e6ce commit 8a8fe8d

File tree

1 file changed

+22
-18
lines changed

1 file changed

+22
-18
lines changed
+22-18
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,33 @@
11
<template>
2-
<div
3-
id="app"
4-
class="is-clipped"
5-
>
2+
<div id="app" class="is-clipped">
63
<tab-menu />
74
<section class="main-section section is-fullheight">
85
<router-view />
96
</section>
10-
<footer class="footer has-background-primary">
11-
<div class="content has-text-centered">
12-
<img
13-
id="footer-logo"
14-
src="@/assets/artwork/logo.png"
15-
width="75px"
16-
>
7+
<footer class="footer has-background-white-ter">
8+
<div class="level is-mobile">
9+
<div class="level-left">
10+
<div class="level-item">
11+
<img id="footer-logo" src="@/assets/artwork/logo.png" width="50px" />
12+
</div>
13+
</div>
14+
<div class="level-right">
15+
<div class="level-item">
16+
<session-health />
17+
</div>
18+
</div>
1719
</div>
1820
</footer>
1921
</div>
2022
</template>
2123
<script>
2224
import TabMenu from "../components/TabMenu";
25+
import SessionHealth from "../components/SessionHealth";
2326
export default {
2427
components: {
2528
TabMenu,
26-
}
29+
SessionHealth,
30+
},
2731
};
2832
</script>
2933
<style lang="scss" scoped>
@@ -36,17 +40,17 @@ export default {
3640
}
3741
3842
.main-section {
39-
flex: 1 1 auto;
40-
overflow-y: auto;
41-
height: 0px;
43+
flex: 1 1 auto;
44+
overflow-y: auto;
45+
height: 0px;
4246
}
4347
4448
footer {
45-
padding: 0.5rem 1.5rem 0.5rem;
49+
padding: 0.5rem 1rem 0.5rem;
4650
}
4751
4852
#footer-logo {
49-
filter: saturate(0%) contrast(0%) brightness(200%);
50-
opacity: 0.5;
53+
// filter: saturate(0%) contrast(0%) brightness(200%);
54+
// opacity: 0.5;
5155
}
5256
</style>

0 commit comments

Comments
 (0)