Skip to content

Commit

Permalink
Fix mobile sequence input zoom
Browse files Browse the repository at this point in the history
  • Loading branch information
liambai committed Nov 7, 2024
1 parent 0f115d4 commit 1f32cfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion viz/src/components/SeqInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function SeqInput({
placeholder="Enter protein sequence..."
value={sequence}
onChange={(e) => setSequence(e.target.value.toUpperCase())}
className={`w-full font-mono min-h-[100px] ${
className={`w-full font-mono min-h-[100px] text-sm sm:text-sm md:text-sm lg:text-sm text-base ${
sequence && !isValidProteinSequence(sequence) ? "border-red-500" : ""
}`}
onKeyDown={(e) => {
Expand Down

0 comments on commit 1f32cfe

Please sign in to comment.