[S] Only enable bottom padding for overall and course
This commit is contained in:
@@ -5,7 +5,6 @@
|
|||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: #2c3e50;
|
color: #2c3e50;
|
||||||
padding-bottom: 100px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#app-content
|
#app-content
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="app" class="theme-default">
|
<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"/>
|
<login v-if="showLogin" v-on:login:user="onLogin"/>
|
||||||
<navigation v-if="user != null"
|
<navigation v-if="user != null"
|
||||||
:app="this" :user="user" :nav="nav"
|
:app="this" :user="user" :nav="nav"
|
||||||
@@ -22,3 +22,10 @@
|
|||||||
|
|
||||||
<script src="./app.ts" lang="ts"></script>
|
<script src="./app.ts" lang="ts"></script>
|
||||||
<style src="./app.scss" lang="scss"/>
|
<style src="./app.scss" lang="scss"/>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.padding
|
||||||
|
{
|
||||||
|
padding-bottom: 100px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user