mirror of
https://github.com/vercel/commerce.git
synced 2025-05-19 16:07:01 +00:00
33 lines
638 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|