Skip to content

Commit

Permalink
install font-awesome // minor ui improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
dmstern committed Aug 27, 2018
1 parent 2a04993 commit e394a85
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
6 changes: 6 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
"@vue/cli-plugin-typescript": "^3.0.0-rc.5",
"@vue/cli-service": "^3.0.0-rc.5",
"concurrently": "^3.6.1",
"font-awesome": "^4.7.0",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.1",
"vue-cli-plugin-vuetify": "^0.1.6",
Expand Down
5 changes: 4 additions & 1 deletion src/components/PackageDetailItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

<v-flex>
<v-card>
<v-card-title class="subheading">{{title.toLowerCase()}}</v-card-title>
<v-card-title class="subheading">
<v-icon>fa4-car</v-icon>
{{title.toLowerCase()}}
</v-card-title>
<v-card-text :class="bigContent !== false ? `title` : ''">
<slot></slot>
</v-card-text>
Expand Down
3 changes: 2 additions & 1 deletion src/plugins/vuetify.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import Vue from 'vue';
import Vuetify from 'vuetify';
import 'vuetify/dist/vuetify.min.css';
import 'font-awesome/css/font-awesome.min.css';

Vue.use(Vuetify, {
iconfont: 'mdi', // 'md' || 'mdi' || 'fa' || 'fa4'
iconfont: 'fa4', // 'md' || 'mdi' || 'fa' || 'fa4'
theme: {
primary: "#D63B09",
secondary: "#FF7043",
Expand Down

0 comments on commit e394a85

Please sign in to comment.