Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Apply border-radius to apps (Wallet) - MEED-2680 - Meeds-io/MIPs#81 #428

Merged
merged 1 commit into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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