-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to get the copy/disconnect dropdown to show #22
Comments
Figured out the issue... was actually opening up, but it was rendering in a Vuetify |
I ended up doing hacky css to fix this... <template>
<v-app>
<!-- <v-navigation-drawer app> -->
<!-- -->
<!-- </v-navigation-drawer> -->
<wallet-multi-button dark/>
<v-app-bar app>
<!-- -->
<Logo :height="64" heightUnits="px" :width="64" widthUnits="px"/>
<GithubLink :height="32" heightUnits="px" :width="32" widthUnits="px"/>
<v-spacer/>
</v-app-bar>
<!-- Sizes your content based upon application components -->
<v-main>
<!-- Provides the application the proper gutter -->
<v-container fluid>
<!-- If using vue-router -->
<router-view/>
</v-container>
</v-main>
<v-footer app>
<v-row>
</v-row>
</v-footer>
</v-app>
</template> <style>
.swv-dropdown {
position: absolute !important; right: 0px; top: 0px; z-index: 1008;
}
.swv-dropdown-list {
top: 3.25em !important;
right: 1em !important;
}
.swv-button-trigger {
position: absolute !important; right: 0px; top: 0px; z-index: 1008; margin: .5em;
}
</style> |
works, but still have that same issue as #7 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am able to get my wallet connected, but when I click the button with my public key showing it doesn't show the copy/disconnect dropdown.
I am using Vite + VueJS 3 + Vuetify
No errors in console
The text was updated successfully, but these errors were encountered: