Skip to content

Commit

Permalink
fix: search result color not applied & increase option page width
Browse files Browse the repository at this point in the history
  • Loading branch information
cnwangjie committed Aug 8, 2019
1 parent 9ec6c25 commit 425d75d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/page/main/Options.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div>
<v-layout>
<v-flex xs12 sm6 offset-sm3>
<v-flex xs12 sm8 offset-sm2>

<v-card>
<v-card-text>
Expand Down
4 changes: 2 additions & 2 deletions src/app/page/main/Search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
<v-card v-if="q && items && items.length">
<v-list>
<v-list-tile
v-for="(item, index) in items" :key="index" :color="item.color"
v-for="(item, index) in items" :key="index"
:to="{name: 'detailList', query: item.value}"
>
<v-list-tile-content>
<v-list-tile-content :class="item.color + '--text'">
<v-list-tile-title v-text="item.title"></v-list-tile-title>
<v-list-tile-sub-title v-text="item.subtitle"></v-list-tile-sub-title>
</v-list-tile-content>
Expand Down

0 comments on commit 425d75d

Please sign in to comment.