Skip to content

Commit

Permalink
fix: styles
Browse files Browse the repository at this point in the history
  • Loading branch information
olgakup committed Oct 11, 2024
1 parent 88855a1 commit 9fc3283
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/libs/layouts/MewFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@
<div class="text-info order-last md:order-1">
<!-- Consent Button -->
<MewSwitchDataTracking :useI18n="(useI18n)" id="consent-switch-footer-menu" :user-consent="userConsent"
@update:consent="(val) => emit('update:consent', val)" class="mb-[42px]" />
@update:consent="(val) => emit('update:consent', val)" />
<slot name="lang-switch-footer"></slot>
<p class="mb-[10px]">
<p class="mt-[42px] mb-[10px]">
© {{ year }} MyEtherWallet. All rights reserved.
</p>
<p class="mb-[10px]">
Expand Down
6 changes: 3 additions & 3 deletions src/libs/layouts/MewMobileMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<div class="grid grid-cols-1 gap-6 px-6">
<MewLink :link-url="PROJECT_LINKS[PROJECTS.LANDING].HOME" :curr-project="props.currProject"
:link-component="props.linkComponent" :link-text="t('home')" @mewlink:click="trackHome"
class="text-lg font-medium leading-6 hoverOpacity p-2" />
class="text-lg font-medium leading-6 hoverOpacity p-2 capitalize" />
<a href="https://ccswap.myetherwallet.com/" target="_blank"
class="text-lg font-medium leading-6 hoverOpacity p-2" @click="trackBuy">{{ t('buy') }}</a>
<MewLink :link-url="PROJECT_LINKS[PROJECTS.PORTFOLIO].HOW_IT_WORKS_SWAP" :curr-project="props.currProject"
:link-component="props.linkComponent" :link-text="t('swap')" @mewlink:click="trackSwap"
class="text-lg font-medium leading-6 hoverOpacity p-2" />
class="text-lg font-medium leading-6 hoverOpacity p-2 capitalize" />
<!-- More Features Dropdown -->
<div class="text-lg font-medium leading-6" @click="featuresToggle">
<div class="flex justify-between items-center hoverOpacity cursor-pointer p-2">
Expand All @@ -24,7 +24,7 @@
class="grid grid-cols-1 gap-4 px-3 pt-6 pb-2 transition-all transition-[height] duration-500 ease-out">
<MewLink :link-url="PROJECT_LINKS[PROJECTS.LANDING].STAKING" :curr-project="props.currProject"
:link-component="props.linkComponent" :link-text="t('more_features.staking')"
@mewlink:click="trackStaking" class="hoverOpacity cursor-pointer p-2" />
@mewlink:click="trackStaking" class="hoverOpacity cursor-pointer p-2 capitalize" />
<MewLink :link-url="PROJECT_LINKS[PROJECTS.PORTFOLIO].HOW_IT_WORKS_NFT" :curr-project="props.currProject"
:link-component="props.linkComponent" :link-text="t('more_features.nft')" @mewlink:click="trackNft"
class="hoverOpacity cursor-pointer p-2" />
Expand Down

0 comments on commit 9fc3283

Please sign in to comment.