web/satellite: fix storj token card flexible height
This change fixes an issue where the storj token cards will extend their height to match their parent, causing them to get taller when the add card form is showing. Change-Id: I22219c8e537bda6555c8c3bf813f9649b664639a
This commit is contained in:
parent
dc28dadbc2
commit
443a7b220e
@ -14,11 +14,13 @@
|
|||||||
/>
|
/>
|
||||||
<add-token-card-native
|
<add-token-card-native
|
||||||
v-else-if="nativeTokenPaymentsEnabled"
|
v-else-if="nativeTokenPaymentsEnabled"
|
||||||
|
class="payments-area__container__token-card"
|
||||||
:parent-init-loading="parentInitLoading"
|
:parent-init-loading="parentInitLoading"
|
||||||
@showTransactions="showTransactionsTable"
|
@showTransactions="showTransactionsTable"
|
||||||
/>
|
/>
|
||||||
<add-token-card
|
<add-token-card
|
||||||
v-else
|
v-else
|
||||||
|
class="payments-area__container__token-card"
|
||||||
:total-count="transactionCount"
|
:total-count="transactionCount"
|
||||||
/>
|
/>
|
||||||
<div v-for="card in creditCards" :key="card.id" class="payments-area__container__cards">
|
<div v-for="card in creditCards" :key="card.id" class="payments-area__container__cards">
|
||||||
@ -784,11 +786,15 @@ $align: center;
|
|||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
|
|
||||||
&__cards {
|
&__cards, &__token-card {
|
||||||
width: 348px;
|
|
||||||
height: 203px;
|
height: 203px;
|
||||||
padding: 24px;
|
width: 348px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__cards {
|
||||||
|
padding: 24px;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
box-shadow: 0 0 20px rgb(0 0 0 / 4%);
|
box-shadow: 0 0 20px rgb(0 0 0 / 4%);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
@ -25,16 +25,8 @@ import StorjLarge from '@/../static/images/billing/storj-icon-large.svg';
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.token-loader {
|
|
||||||
width: 100% !important;
|
|
||||||
padding: 0 !important;
|
|
||||||
margin: 40px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.token {
|
.token {
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
width: 348px;
|
|
||||||
height: 203px;
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 24px;
|
padding: 24px;
|
||||||
box-shadow: 0 0 20px rgb(0 0 0 / 4%);
|
box-shadow: 0 0 20px rgb(0 0 0 / 4%);
|
||||||
|
@ -196,8 +196,6 @@ onMounted(async (): Promise<void> => {
|
|||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.token {
|
.token {
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
width: 300px;
|
|
||||||
margin-right: 10px;
|
|
||||||
padding: 24px;
|
padding: 24px;
|
||||||
box-shadow: 0 0 20px rgb(0 0 0 / 4%);
|
box-shadow: 0 0 20px rgb(0 0 0 / 4%);
|
||||||
position: relative;
|
position: relative;
|
||||||
|
Loading…
Reference in New Issue
Block a user