feat: make font smaller on mobile screens

This commit is contained in:
Jet Pham 2025-11-18 01:06:10 -08:00
parent 07584f48ec
commit b75e506639
No known key found for this signature in database

View file

@ -38,12 +38,19 @@
padding: 1rem;
margin: 0 auto;
font-family: "IBM VGA", monospace;
font-size: 1.5rem; /* Increased font size to make characters bigger */
font-size: 1.25rem; /* Smaller font size for mobile */
white-space: pre;
line-height: 1;
box-sizing: border-box;
overflow: hidden; /* Disable scrolling */
}
/* Desktop font size */
@media (min-width: 768px) {
html {
font-size: 1.5rem;
}
}
/* Apply CGA theme to body */
body {