Files
carmanagement/homepage/src/components/marketing/CTA.module.css
T
root d7fb7b7a7b
Build & Deploy / Build & Push Docker Image (push) Failing after 47s
Build & Deploy / Deploy to VPS (push) Has been skipped
Test / API Unit Tests (push) Failing after 5m4s
Test / Marketplace Unit Tests (push) Failing after 4m55s
Test / Admin Unit Tests (push) Successful in 9m37s
Test / Dashboard Unit Tests (push) Successful in 9m37s
Test / API Integration Tests (push) Successful in 9m54s
redesign the homepage
2026-06-26 16:27:21 -04:00

43 lines
695 B
CSS

.cta {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
align-items: center;
gap: var(--space-8);
}
.copy {
display: grid;
gap: var(--space-3);
}
.eyebrow {
margin: 0;
color: var(--interactive-primary);
font-size: var(--type-label-size);
font-weight: 800;
}
.actions {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
gap: var(--space-3);
}
.inline {
border-radius: var(--radius-sm);
}
.card {
grid-template-columns: 1fr;
}
.card .actions {
justify-content: flex-start;
}
@media (max-width: 767px) {
.cta {
grid-template-columns: 1fr;
}
.actions {
justify-content: flex-start;
}
.actions > * {
inline-size: 100%;
}
}