[S] Only enable bottom padding for overall and course

This commit is contained in:
Hykilpikonna
2020-04-11 20:01:03 -04:00
parent b1df999efb
commit ea93bc8d1a
2 changed files with 8 additions and 2 deletions
-1
View File
@@ -5,7 +5,6 @@
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
padding-bottom: 100px;
}
#app-content
+8 -1
View File
@@ -1,6 +1,6 @@
<template>
<div id="app" class="theme-default">
<div id="app-inner" v-if="staticPage === ''" :class="{dark: darkMode}">
<div id="app-inner" v-if="staticPage === ''" :class="{dark: darkMode, padding: nav.id !== 'course-selection'}">
<login v-if="showLogin" v-on:login:user="onLogin"/>
<navigation v-if="user != null"
:app="this" :user="user" :nav="nav"
@@ -22,3 +22,10 @@
<script src="./app.ts" lang="ts"></script>
<style src="./app.scss" lang="scss"/>
<style lang="scss" scoped>
.padding
{
padding-bottom: 100px;
}
</style>