Skip to content

Commit

Permalink
Supported browser changes
Browse files Browse the repository at this point in the history
Add title and remove footer on mobile
Change version format to JSON
  • Loading branch information
jbgust committed Aug 20, 2019
1 parent a6866e3 commit 2849ed8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ansible/meteor-frontend/tasks/meteor-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@

- name: Marquage de la version
copy:
content: "Version en prod : {{ lookup('env','CIRCLE_SHA1') }}"
dest: /var/www/{{frontFolder}}/version.txt
content: "{\"version\": \"{{ lookup('env','CIRCLE_SHA1') }}\"}"
dest: /var/www/{{frontFolder}}/version.json
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@
}
},
"browserslist": [
"> 1%",
"defaults",
"last 6 versions",
"not ie <= 11"
],
"jest": {
Expand Down
4 changes: 2 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
</v-btn>
</v-toolbar-items>
<v-app-bar-nav-icon class="hidden-md-and-up" @click.stop="drawer = !drawer">

</v-app-bar-nav-icon>
<v-toolbar-title class="hidden-md-and-up">Meteor</v-toolbar-title>
<v-spacer></v-spacer>
<meteor-news/>
</v-app-bar>
Expand Down Expand Up @@ -64,7 +64,7 @@
<router-view></router-view>
</v-fade-transition>
</v-content>
<v-footer app inset>
<v-footer app inset class="hidden-sm-and-down">
<span class="footer-app">Made with love in Lyon, France by <a href="https://github.com/jordan38" target="_blank">Jordan Content</a> and <a href="https://github.com/jbgust" target="_blank">Jérôme Bise</a></span>
</v-footer>
</v-app>
Expand Down

0 comments on commit 2849ed8

Please sign in to comment.