Skip to content

Commit

Permalink
change popup font size #295
Browse files Browse the repository at this point in the history
  • Loading branch information
nzomkxia committed Feb 12, 2019
1 parent da4441f commit 851f0c7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions dubbo-admin-ui/src/components/ServiceSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
v-for="(item, i) in items"
:key="i"
@click="selected = i">
<v-list-tile-title>{{ $t(item.title) }}</v-list-tile-title>
<v-list-tile-title >{{ $t(item.title) }}</v-list-tile-title>
</v-list-tile>
</v-list>
</v-menu>
Expand Down Expand Up @@ -112,7 +112,7 @@
:key="i"
:href='governanceHref(item.value, props.item.service, props.item.group, props.item.version)'
>
<v-list-tile-title>{{ $t(item.title) }}</v-list-tile-title>
<v-list-tile-title class="small-list">{{ $t(item.title) }}</v-list-tile-title>
</v-list-tile>
</v-list>
</v-menu>
Expand Down Expand Up @@ -342,5 +342,9 @@
font-size: 18px;
}
.small-list {
font-size: 10px;
}
</style>

0 comments on commit 851f0c7

Please sign in to comment.