patx/projectpay
add subtle bg to the payment cards css
Commit 884c70b · patx · 2026-07-06T17:05:46-04:00
Comments
No comments yet.
Diff
diff --git a/templates/base.html b/templates/base.html
index ccee373..8c4055a 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -174,14 +174,20 @@
display: grid;
gap: 12px;
}
- .project-card,
- .payment-card {
+ .project-card {
background: var(--surface-bg);
border-radius: 8px;
color: inherit;
text-decoration: none;
padding: 14px;
}
+ .payment-card {
+ background: var(--surface-subtle);
+ border-radius: 8px;
+ color: inherit;
+ text-decoration: none;
+ padding: 14px;
+ }
.invoice-line-card,
.invoice-summary {
background: var(--surface-bg);