mirror of
https://github.com/vercel/commerce.git
synced 2025-07-05 12:41:21 +00:00
28 lines
618 B
SCSS
28 lines
618 B
SCSS
@import "../../../../styles/utilities";
|
|
|
|
.homeCTA {
|
|
@apply spacing-horizontal;
|
|
.inner {
|
|
@apply flex justify-between items-center bg-primary-light;
|
|
background-image: url('./assets/bg_home_cta.png');
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-position: center top;
|
|
border-radius: 2.4rem;
|
|
padding: 2rem;
|
|
@screen md {
|
|
padding-left: 9rem;
|
|
padding-right: 4.8rem;
|
|
min-height: 18rem;
|
|
}
|
|
.text {
|
|
.heading {
|
|
@apply heading-1 font-heading text-primary;
|
|
}
|
|
.sub {
|
|
@apply font-bold sm-headline;
|
|
}
|
|
}
|
|
}
|
|
}
|