24 lines
577 B
CSS
24 lines
577 B
CSS
/* Cart module layout */
|
|
main {
|
|
min-height: calc(100vh - 56px);
|
|
padding: 0;
|
|
}
|
|
|
|
/*
|
|
* Narrow page components (payment page, request form, dashboard, group buy)
|
|
* already set their own max-width + margin:0 auto for centering.
|
|
* We just need to ensure the subnav still spans full width above them.
|
|
*/
|
|
|
|
/* Hide the module subnav on public-facing pages — payers/pledgers don't need shop nav */
|
|
main:has(folk-payment-page) .rapp-subnav,
|
|
main:has(folk-group-buy-page) .rapp-subnav {
|
|
display: none;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
main {
|
|
min-height: calc(100vh - 44px);
|
|
}
|
|
}
|