Browse Source

mobile fixes

readme
Mayank 5 years ago
parent
commit
1f725ef171
  1. 2
      src/components/BitcoinWallet.vue
  2. 2
      src/components/ChannelList.vue
  3. 2
      src/components/LightningWallet.vue
  4. 5
      src/layouts/DashboardLayout.vue

2
src/components/BitcoinWallet.vue

@ -171,7 +171,7 @@
<span
style="margin-left: 6px;"
:title="tx.description"
>{{ tx.description.length > 25 ? tx.description.substring(0,25) + '...' : tx.description }}</span>
>{{ tx.description.length > 19 ? tx.description.substring(0,19) + '...' : tx.description }}</span>
</h6>
<!-- Timestamp of tx -->

2
src/components/ChannelList.vue

@ -129,6 +129,8 @@ export default {
rgba(255, 255, 255, 0),
rgba(255, 255, 255, 1)
);
border-bottom-left-radius: 1rem;
border-bottom-right-radius: 1rem;
}
//top fade

2
src/components/LightningWallet.vue

@ -170,7 +170,7 @@
<span
style="margin-left: 6px;"
:title="tx.description"
>{{ tx.description.length > 18 ? tx.description.substring(0,18) + '...' : tx.description }}</span>
>{{ tx.description.length > 19 ? tx.description.substring(0,19) + '...' : tx.description }}</span>
</h6>
<!-- Timestamp of tx -->

5
src/layouts/DashboardLayout.vue

@ -107,11 +107,14 @@ export default {
},
methods: {
logout() {
//close mobile menu
if (this.isMobileMenuOpen) {
this.toggleMobileMenu();
}
this.$store.dispatch("user/logout");
this.$router.push("/");
},
toggleMobileMenu() {
console.log(process.env.VUE_APP_API_URL);
this.$store.commit("toggleMobileMenu");
},
fetchData() {

Loading…
Cancel
Save