feat: Added ≤400px responsive breakpoints to ConsentDashboard, CreatorS…

- "frontend/src/pages/ConsentDashboard.module.css"
- "frontend/src/pages/CreatorSettings.module.css"
- "frontend/src/pages/Login.module.css"
- "frontend/src/pages/Register.module.css"

GSD-Task: S02/T02
This commit is contained in:
jlightner 2026-04-04 12:55:34 +00:00
parent 6e038f041f
commit e3456f66b0
4 changed files with 63 additions and 0 deletions

View file

@ -142,3 +142,25 @@
margin: 0;
font-size: 0.9375rem;
}
/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 400px) {
.videoRow {
padding: 1rem;
}
.toggleRow {
flex-wrap: wrap;
gap: 0.5rem;
}
.heading {
font-size: 1.125rem;
}
.historyEntry {
font-size: 0.75rem;
padding: 0.25rem 0.375rem;
}
}

View file

@ -113,3 +113,20 @@
border-top: 1px solid var(--color-border);
margin: 1.25rem 0;
}
/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 400px) {
.section {
padding: 1rem;
}
.heading {
font-size: 1.125rem;
}
.button {
width: 100%;
text-align: center;
}
}

View file

@ -111,3 +111,15 @@
.link:hover {
text-decoration: underline;
}
/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 400px) {
.card {
padding: 1.5rem 1rem;
}
.title {
font-size: 1.25rem;
}
}

View file

@ -114,3 +114,15 @@
.link:hover {
text-decoration: underline;
}
/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 400px) {
.card {
padding: 1.5rem 1rem;
}
.title {
font-size: 1.25rem;
}
}