feat: Implement course instructor management UI with search, add, set primary, and remove instructor capabilities.

This commit is contained in:
Missez 2026-02-05 16:39:58 +07:00
parent 7ad15778e6
commit 5b1af9d43b
5 changed files with 27 additions and 6 deletions

View file

@ -62,4 +62,24 @@ h6, .text-h6 { font-size: 1rem !important; }
.text-overline { font-size: 0.75rem !important; }
.text-subtitle1 { font-size: 1rem !important; }
.text-subtitle2 { font-size: 0.875rem !important; }
/* Fix Quasar button full width - only for buttons */
.q-btn.w-full,
button.w-full {
width: 100% !important;
}
/* Fix Quasar checkbox styling */
.q-checkbox__inner {
font-size: 40px !important;
}
.q-checkbox__bg {
border-radius: 4px !important;
}
.q-checkbox__inner--truthy .q-checkbox__bg {
background-color: var(--q-primary) !important;
border-color: var(--q-primary) !important;
}
</style>