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"]} placementKey={EPlacementKeys["aura.placement.redesign.main"]}
/> />
</Modal> </Modal>
<BackgroundTopBlob <div className={styles["background-top-blob-container"]}>
width={pageWidth} <BackgroundTopBlob
height={200} width={pageWidth}
className={styles["background-top-blob"]} height={200}
/> className={styles["background-top-blob"]}
/>
</div>
<Header className={styles.header} /> <Header className={styles.header} />
<TrialPaymentHeader buttonClick={openStripeModal} /> <TrialPaymentHeader buttonClick={openStripeModal} />
{!!videoUrl.length && ( {!!videoUrl.length && (

View File

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