fix pricing at home page
Build & Push / Pipeline Tests (push) Successful in 1m51s
Test / Type Check (all packages) (push) Successful in 51s
Build & Push / Build & Push Docker Image (push) Failing after 4m11s
Test / API Unit Tests (push) Successful in 1m15s
Test / Homepage Unit Tests (push) Successful in 49s
Test / Carplace Unit Tests (push) Successful in 43s
Test / Admin Unit Tests (push) Successful in 42s
Test / Dashboard Unit Tests (push) Successful in 43s
Test / API Integration Tests (push) Successful in 1m5s
Build & Push / Pipeline Tests (push) Successful in 1m51s
Test / Type Check (all packages) (push) Successful in 51s
Build & Push / Build & Push Docker Image (push) Failing after 4m11s
Test / API Unit Tests (push) Successful in 1m15s
Test / Homepage Unit Tests (push) Successful in 49s
Test / Carplace Unit Tests (push) Successful in 43s
Test / Admin Unit Tests (push) Successful in 42s
Test / Dashboard Unit Tests (push) Successful in 43s
Test / API Integration Tests (push) Successful in 1m5s
This commit is contained in:
@@ -14,14 +14,15 @@
|
||||
margin-inline: auto;
|
||||
}
|
||||
|
||||
.pricingContainer {
|
||||
inline-size: min(100%, 104rem);
|
||||
}
|
||||
|
||||
.controls {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.5fr);
|
||||
gap: var(--space-5);
|
||||
position: relative;
|
||||
left: 50%;
|
||||
inline-size: min(100vw - (var(--layout-gutter) * 2), 104rem);
|
||||
transform: translateX(-50%);
|
||||
inline-size: 100%;
|
||||
padding: var(--space-5);
|
||||
border: 1px solid var(--border-standard);
|
||||
border-radius: var(--radius-lg);
|
||||
@@ -111,12 +112,9 @@
|
||||
|
||||
.planGrid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
align-items: stretch;
|
||||
position: relative;
|
||||
left: 50%;
|
||||
inline-size: min(100vw - (var(--layout-gutter) * 2), 104rem);
|
||||
transform: translateX(-50%);
|
||||
inline-size: 100%;
|
||||
gap: var(--space-5);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,6 @@ interface PricingSectionProps {
|
||||
const accountSubscriptionPlanByPricingPlan: Record<Exclude<PricingPlanId, 'enterprise'>, AccountSubscriptionPlan> = {
|
||||
launch: 'STARTER',
|
||||
growth: 'GROWTH',
|
||||
pro: 'PRO',
|
||||
};
|
||||
|
||||
function analyticsContext(
|
||||
@@ -105,7 +104,7 @@ export function PricingSection({
|
||||
|
||||
return (
|
||||
<Section id="pricing" className={styles.section} aria-label={content.title}>
|
||||
<Container>
|
||||
<Container className={styles.pricingContainer}>
|
||||
<Stack gap="large">
|
||||
<SectionHeader
|
||||
className={styles.header ?? ''}
|
||||
|
||||
Reference in New Issue
Block a user