feat: in-app bug report form (replaces GitHub link)

This commit is contained in:
dadaloop82
2026-05-16 13:25:51 +00:00
parent 8a596cb7d8
commit 5f4c29bd5a
7 changed files with 259 additions and 37 deletions
+30
View File
@@ -3103,6 +3103,36 @@ body.server-offline .bottom-nav {
justify-content: center;
}
/* ── Bug report form ── */
.bug-type-pills {
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.bug-type-pill {
flex: 1;
min-width: 80px;
padding: 7px 10px;
border: 1.5px solid #cbd5e1;
border-radius: 20px;
background: #fff;
color: #475569;
font-size: 0.88rem;
cursor: pointer;
transition: border-color 0.15s, background 0.15s, color 0.15s;
-webkit-tap-highlight-color: transparent;
}
.bug-type-pill.active {
border-color: var(--primary, #2d5016);
background: var(--primary, #2d5016);
color: #fff;
font-weight: 600;
}
.bug-type-pill:not(.active):hover {
border-color: var(--primary, #2d5016);
color: var(--primary, #2d5016);
}
.modal-detail {
display: flex;
flex-direction: column;