Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions apps/web/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,18 @@
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance:textfield;
input[type="number"] {
appearance: textfield;
-moz-appearance: textfield;
}
}


@layer utilities {
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
}
2 changes: 1 addition & 1 deletion apps/web/src/app/register/answer-academic/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ function AnswerAcademic(props: AnswerAcademicProps) {
<FormLabel>รูปแบบการเดิน</FormLabel>
<FormControl>
<Textarea
className="min-h-auto h-12 [resize:none] md:text-base"
className="min-h-auto no-scrollbar h-12 md:text-base"
{...field}
disabled
/>
Expand Down
Loading