fix styling and title

Co-authored-by: Niko Lockenvitz <nl@nikolockenvitz.de>
This commit is contained in:
Rene Fischer 2020-06-26 18:10:57 +02:00
parent 67b72d1452
commit f2f3c2bbfd
No known key found for this signature in database
GPG key ID: 5D8E12AC54D3C1B5
5 changed files with 19 additions and 2 deletions

View file

Before

Width:  |  Height:  |  Size: 204 B

After

Width:  |  Height:  |  Size: 204 B

View file

Before

Width:  |  Height:  |  Size: 269 B

After

Width:  |  Height:  |  Size: 269 B

View file

@ -12,7 +12,7 @@
>
<v-list>
<v-list-item>
<v-img src="../../../public/img/flash.svg" class="ffc-icon"></v-img>
<v-img src="../../assets/flash.svg" class="ffc-icon"></v-img>
</v-list-item>
<v-divider></v-divider>
<v-list-item v-for="navItem in navBarList" :key="navItem.to" :to="navItem.to" link>
@ -144,4 +144,10 @@ export default class NavigationBar extends NavigationBarProps {
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
.ffc-icon {
height: 200px;
}
.v-list {
padding: 0;
}
</style>

View file

@ -8,7 +8,7 @@
<v-btn color="indigo" @click="shareApp" class="my-4">Share Fancy Flashcard</v-btn>
<v-footer app>
<span class="px-4">
<span class="px-4 copyright">
&copy; {{ new Date().getFullYear() }} Niko Lockenvitz &amp; Rene-Pascal Fischer
<br />
<a
@ -67,4 +67,7 @@ export default {
.about {
text-align: center;
}
.copyright {
margin: auto;
}
</style>

View file

@ -9,4 +9,12 @@ module.exports = {
short_name: "FFC",
},
},
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].title = 'Fancy Flashcard'
return args
})
},
};