commerce/src/components/modules/home/HomeCTA/HomeCTA.module.scss
2021-08-26 16:25:36 +07:00

30 lines
665 B
SCSS

@import "../../../../styles/utilities";
.homeCTA {
@apply spacing-horizontal;
margin-top: 1.6rem;
margin-bottom: 1.6rem;
.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;
}
}
}
}