Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(core, home, config): fix home page displays 馃悰
  • Loading branch information
PierreBrisorgueil committed Mar 26, 2020
1 parent 00929b1 commit 64f584b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/config/defaults/development.js
Expand Up @@ -54,7 +54,7 @@ module.exports = {
background: '#f3f3f6',
surface: '#ffffff',
error: '#B00020',
onPrimary: '#1d1d1f',
onPrimary: '#ffffff',
onSecondary: '#1d1d1f',
onBackground: '#1d1d1f',
onSurface: '#1d1d1f',
Expand Down
2 changes: 1 addition & 1 deletion src/modules/_core/components/core.footer.component.vue
@@ -1,6 +1,6 @@
<template>
<v-footer
:style="{background: this.config.vuetify.theme.themes[theme].surface, color: config.vuetify.theme.themes[theme].onPrimary}"
:style="{background: this.config.vuetify.theme.themes[theme].primary, color: config.vuetify.theme.themes[theme].onPrimary}"
app
>
<div class="flex-grow-1"></div>
Expand Down
12 changes: 6 additions & 6 deletions src/modules/home/views/home.view.vue
Expand Up @@ -66,7 +66,7 @@
<v-theme-provider dark>
<div>
<v-avatar color="primary" size="88">
<v-icon large v-text="icon"></v-icon>
<v-icon large>fa-{{ icon }}</v-icon>
</v-avatar>
</div>
</v-theme-provider>
Expand All @@ -78,7 +78,7 @@
</v-container>
</section>

<section id="stats">
<section id="stats" class="black">
<v-parallax
:height="$vuetify.breakpoint.smAndDown ? 700 : 500"
src="https://images.unsplash.com/photo-1510915228340-29c85a43dcfe?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1950&q=80"
Expand Down Expand Up @@ -115,7 +115,7 @@

<v-sheet
id="contact"
:style="{background: config.vuetify.theme.themes[theme].primary, color: config.vuetify.theme.themes[theme].onPrimary}"
dark
tag="section"
class="py-12"
tile
Expand Down Expand Up @@ -173,19 +173,19 @@ export default {
featuresTitle: 'Vuetify features',
features: [
{
icon: 'mdi-account-group-outline',
icon: 'users',
title: 'Vibrant Community',
text:
'Lorem ipsum dolor sit amet consectetur adipisicing elit. Iusto cupiditate sint possimus quidem atque harum excepturi nemo velit tempora! Enim inventore fuga, qui ipsum eveniet facilis obcaecati corrupti asperiores nam',
},
{
icon: 'mdi-update',
icon: 'cloud-upload-alt',
title: 'Frequent Updates',
text:
'Sed ut elementum justo. Suspendisse non justo enim. Vestibulum cursus mauris dui, a luctus ex blandit. Lorem ipsum dolor sit amet consectetur adipisicing elit. qui ipsum eveniet facilis obcaecati corrupti consectetur adipisicing elit.',
},
{
icon: 'mdi-shield-outline',
icon: 'history',
title: 'Long-term Support',
text:
'Lorem ipsum dolor sit amet consectetur adipisicing elit. Iusto cupiditate sint possimus quidem atque harum excepturi nemo velit tempora! Enim inventore fuga, qui ipsum eveniet facilis obcaecati corrupti asperiores nam',
Expand Down

0 comments on commit 64f584b

Please sign in to comment.