Skip to content

Commit

Permalink
solving conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Viterbo committed Jan 8, 2024
2 parents bde97d8 + 6c14bcb commit e1b9881
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
1 change: 0 additions & 1 deletion src/antelope/config/AntelopeConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,4 +277,3 @@ export class AntelopeConfig {
}

}

2 changes: 1 addition & 1 deletion src/antelope/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { App, toRaw } from 'vue';
import { BehaviorSubject, Subject } from 'rxjs';
import { Store } from 'pinia';

import { AntelopeConfig, AntelopeDebug, chainNetworkNames } from 'src/antelope/config/';
import { AntelopeConfig, AntelopeDebug, chainNetworkNames } from 'src/antelope/config';
import installPinia from 'src/antelope/stores';

import { AccountModel } from 'src/antelope/stores/account';
Expand Down
3 changes: 2 additions & 1 deletion src/boot/antelope.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ export default boot(({ app }) => {
ant.config.debug.allowDebugMode(
process.env.NODE_ENV !== 'production' ||
document.location.hostname === 'localhost' ||
document.location.hostname.includes('netlify'),
document.location.hostname.includes('netlify') ||
true, // this is temporal for the demo
);

// Finally, we check if the url has the network parameter and if so, we connect to that network
Expand Down
15 changes: 10 additions & 5 deletions src/pages/home/HomePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ onMounted(() => {
<q-page-container class="c-home__page-container">
<div class="c-home">
<div class="c-home__container">
<img
<div class="c-home__logo-container"><img
src="branding/telos-wallet-light.png"
:alt="$t('home.wallet_logo_alt')"
class="c-home__logo"
>
></div>
<div class="c-home__button-container">
<div v-if="showLoginBtns" class="c-home__network-toggle-container" role="tablist">
<button
Expand Down Expand Up @@ -154,11 +154,16 @@ onMounted(() => {
justify-content: space-between;
}
&__logo-container {
flex-grow: 1;
align-self: center;
display: flex;
flex-direction: column;
justify-content: space-evenly;
}
&__logo {
width: 220px;
align-self: center;
margin-top: 10rem;
margin-bottom: 10rem;
}
&__button-container {
Expand Down

0 comments on commit e1b9881

Please sign in to comment.