feat: Establish design system with Tailwind, CSS variables, and core UI components, and introduce discovery page.

This commit is contained in:
supalerk-ar66 2026-01-26 15:55:31 +07:00
parent a7de3aca72
commit f6cb4e4f81
2 changed files with 35 additions and 7 deletions

View file

@ -1113,3 +1113,23 @@ ul {
color: var(--text-secondary);
margin-bottom: 24px;
}
/* ===========================
Checkbox Visibility Enhancement
=========================== */
.checkbox-visible .q-checkbox__bg {
border: 2px solid #475569 !important; /* slate-600 - dark border for visibility */
}
.checkbox-visible .q-checkbox__svg {
color: #ffffff !important; /* white checkmark */
}
.checkbox-visible.q-checkbox--truthy .q-checkbox__bg {
background-color: #3b82f6 !important; /* primary blue when checked */
border-color: #3b82f6 !important;
}
.checkbox-visible.q-checkbox--dense .q-checkbox__bg {
border-width: 2px !important;
}