Skip to content

Commit

Permalink
Fix selector and serach bar (#532)
Browse files Browse the repository at this point in the history
* Fix selector and serach bar

* Review fixes
  • Loading branch information
GusevPM authored Jul 7, 2023
1 parent 1e32fc7 commit 05263c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/ConnectWallet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<v-icon size="26">mdi-wallet</v-icon>
</v-btn>
</template>
<v-list class="py-0" width="150">
<v-list class="py-0">
<v-subheader class="overline">Select network</v-subheader>
<v-divider/>
<v-list-item class="pr-8 pl-4 cursor-pointer" @click="auth(network)" v-for="network in config.networks" :key="network">
Expand All @@ -21,7 +21,7 @@
<img alt="avatar" class="avatar" :src="`https://catava.dipdup.net/${account.address}`">
</v-btn>
</template>
<v-list max-width="250" class="py-0">
<v-list class="py-0" max-width="250">
<v-list-item three-line>
<v-list-item-content>
<v-list-item-title>{{account.walletName}}</v-list-item-title>
Expand Down
4 changes: 2 additions & 2 deletions src/views/contract/OperationsTab.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<template>
<v-container fluid class="px-8 py-4 canvas fill-canvas">
<v-container fluid class="pa-8 ma-0 canvas fill-canvas">
<OperationFilters :contract="contract" v-model="openFilters" @filterChanged="filterChanged" :filters="filters" v-if="searchable"/>
<v-row>
<v-col cols="9">
<v-row v-if="searchable">
<v-col cols="12" class="pt-0">
<v-col cols="12">
<v-text-field
v-model="search"
color="primary"
Expand Down

0 comments on commit 05263c9

Please sign in to comment.