Skip to content

Commit

Permalink
feat: Apply border-radius to apps (Wallet) - MEED-2680 - Meeds-io/MIP…
Browse files Browse the repository at this point in the history
…s#81  (#432)

This PR adds the new brandable border radius to all the wallet apps
  • Loading branch information
SaraBoutej authored and exo-swf committed Nov 9, 2023
1 parent 88449d4 commit 91420b7
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
<v-app class="mb-4 application-toolbar">
<v-tabs
v-model="selectedTab"
slider-size="4">
slider-size="4"
class="card-border-radius overflow-hidden">
<v-tab
key="wallets"
href="#wallets">
Expand All @@ -37,7 +38,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
{{ $t('exoplatform.wallet.title.initialFundsTab') }}
</v-tab>
</v-tabs>
<v-tabs-items v-model="selectedTab" class="tabs-content">
<v-tabs-items v-model="selectedTab" class="tabs-content card-border-radius overflow-hidden">
<v-tab-item
id="wallets"
value="wallets"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
<v-app class="mb-4 application-toolbar">
<v-tabs
v-model="tab"
slider-size="4">
slider-size="4"
class="card-border-radius overflow-hidden">
<v-tab>{{ tabName }}</v-tab>
</v-tabs>
<v-tabs-items v-model="tab" class="tabs-content">
<v-tabs-items v-model="tab" class="tabs-content card-border-radius overflow-hidden">
<v-tab-item eager>
<v-flex>
<v-layout
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<v-app>
<v-app class="card-border-radius overflow-hidden">
<wallet-settings-details
v-if="displayDetails"
:wallet-settings="walletSettings"
Expand All @@ -11,7 +11,7 @@
<v-card
v-else-if="displayed"
:class="walletSettingsClass"
class="border-radius"
class="card-border-radius"
flat>
<v-list>
<v-list-item>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<v-card
v-if="displayed"
class="walletSetting"
class="walletSetting card-border-radius"
flat>
<template v-if="!hideContent">
<v-card-title class="px-0 pt-2">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

<v-tabs
v-model="selectedTab"
class="card-border-radius overflow-hidden"
slider-size="4">
<v-tab key="SendRewards" href="#SendRewards">
{{ $t('exoplatform.wallet.title.sendRewardsTab') }}
Expand All @@ -84,7 +85,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
</v-tab>
</v-tabs>

<v-tabs-items v-model="selectedTab" class="tabs-content">
<v-tabs-items v-model="selectedTab" class="tabs-content card-border-radius overflow-hidden">
<v-tab-item
id="SendRewards"
value="SendRewards"
Expand Down

0 comments on commit 91420b7

Please sign in to comment.