Updated the expiry date to show as red

This commit is contained in:
Tiago Ribeiro
2023-11-15 11:17:44 +00:00
parent c2a807efc7
commit d412c1616f
3 changed files with 21 additions and 7 deletions

View File

@@ -69,8 +69,8 @@ export default function ExamLoader() {
</RadioGroup.Option>
))}
</RadioGroup>
<Input type="text" name="examId" onChange={setExamId} placeholder="Exam ID" className="-md:!w-full md:!w-44 2xl:!w-full" />
<Button disabled={!selectedModule || !examId} isLoading={isLoading} className="-md:!w-full md:!w-44 2xl:!w-full">
<Input type="text" name="examId" onChange={setExamId} placeholder="Exam ID" className="w-full" />
<Button disabled={!selectedModule || !examId} isLoading={isLoading} className="w-full">
Load Exam
</Button>
</form>