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 (#428)

This PR adds the new brandable border radius to all the wallet apps
  • Loading branch information
SaraBoutej authored Oct 17, 2023
1 parent e5be475 commit 44ed540
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 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

0 comments on commit 44ed540

Please sign in to comment.