Merge branch 'trial-payment-page' into 'develop'

trial-payment-page

See merge request witapp/aura-webapp!204
This commit is contained in:
Daniil Chemerkin 2024-06-26 22:54:55 +00:00
commit d1648d8219
2 changed files with 16 additions and 8 deletions

View File

@ -126,11 +126,13 @@ function TrialPaymentPage() {
placementKey={EPlacementKeys["aura.placement.redesign.main"]}
/>
</Modal>
<BackgroundTopBlob
width={pageWidth}
height={200}
className={styles["background-top-blob"]}
/>
<div className={styles["background-top-blob-container"]}>
<BackgroundTopBlob
width={pageWidth}
height={200}
className={styles["background-top-blob"]}
/>
</div>
<Header className={styles.header} />
<TrialPaymentHeader buttonClick={openStripeModal} />
{!!videoUrl.length && (

View File

@ -22,10 +22,16 @@
max-height: calc(100dvh - 40px);
}
.background-top-blob {
.background-top-blob-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: fit-content;
overflow: hidden;
}
.background-top-blob {
scale: 1.4;
}
@ -33,8 +39,8 @@
position: absolute;
z-index: 3;
top: 32px;
padding: 0 32px;
width: calc(100% + 36px) !important;
padding: 0 14px;
width: 100%;
}
.personal-video {