20 lines
457 B
CSS
20 lines
457 B
CSS
/* rPayments module layout */
|
|
main {
|
|
padding: 0;
|
|
}
|
|
|
|
/*
|
|
* Narrow page components (payment page, request form, dashboard)
|
|
* set their own max-width; we center them with margin auto so subnav stays full-width.
|
|
*/
|
|
folk-payment-request,
|
|
folk-payment-page,
|
|
folk-payments-dashboard {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* Hide the module subnav on public-facing pay page — payers don't need the dashboard nav */
|
|
main:has(folk-payment-page) .rapp-subnav {
|
|
display: none;
|
|
}
|