commerce/components/product/styles.module.scss
2023-09-16 16:48:34 -05:00

33 lines
638 B
SCSS

@use 'styles/_typography';
@use 'styles/_spacing';
.purchaseInput {
padding-left: spacing.$list-padding;
height: 100%;
.topBottom {
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
.ctas {
display: flex;
flex-direction: row;
gap: 20px;
.buyNow,
.checkout {
@include typography.header-cta;
text-decoration-line: underline;
}
.buyNow.inactive {
text-decoration-line: line-through;
}
}
}
}