Add About & Privacy and Donate modals (M6, §01)

This commit is contained in:
2026-06-07 20:04:08 +03:00
parent 30ff7ae357
commit 123f1498b4
8 changed files with 400 additions and 2 deletions
+50
View File
@@ -0,0 +1,50 @@
/* Donate modal body — minimal, sincere, one action. */
.donate {
display: flex;
flex-direction: column;
gap: var(--space-5);
padding: var(--space-6);
min-width: 0;
}
.body {
margin: 0;
font-size: 14px;
line-height: 1.5;
color: var(--text);
}
.actions {
display: flex;
padding-top: var(--space-3);
}
/* Primary CTA — styled as a button even though it's an <a> so it matches
the app's design language. Uses accent color as in ExtractModal .primary. */
.primary {
display: inline-flex;
align-items: center;
justify-content: center;
height: 36px;
padding: 0 var(--space-6);
background: var(--accent);
border: var(--border-width) solid transparent;
border-radius: var(--radius);
color: var(--accent-contrast);
font: inherit;
font-size: 13px;
font-weight: 600;
text-decoration: none;
cursor: pointer;
transition: background var(--dur-fast) var(--ease);
}
.primary:hover {
background: var(--accent-hover);
}
.primary:focus-visible {
outline: 2px solid var(--focus);
outline-offset: 2px;
}