18 lines
376 B
CSS
18 lines
376 B
CSS
/* Cart module layout */
|
|
main {
|
|
padding: 0;
|
|
}
|
|
|
|
/*
|
|
* Narrow page components (group buy page) set their own max-width; we center
|
|
* them with margin auto so subnav stays full-width.
|
|
*/
|
|
folk-group-buy-page {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* Hide the module subnav on public-facing pages — pledgers don't need shop nav */
|
|
main:has(folk-group-buy-page) .rapp-subnav {
|
|
display: none;
|
|
}
|