fix: Prevent button jump by setting min-height on METAR display

Co-authored-by: aider (gemini/gemini-2.5-pro) <aider@aider.chat>
This commit is contained in:
2026-02-14 14:36:06 -07:00
parent 2cd12473e5
commit 39fd0be913
+1 -1
View File
@@ -6,7 +6,7 @@
<title>METAR Practice</title> <title>METAR Practice</title>
<style> <style>
body { font-family: monospace; padding: 2em; } body { font-family: monospace; padding: 2em; }
#metar-display { font-size: 1.2em; margin-bottom: 1em; } #metar-display { font-size: 1.2em; margin-bottom: 1em; min-height: 3em; }
button { font-size: 1em; padding: 0.5em 1em; } button { font-size: 1em; padding: 0.5em 1em; }
</style> </style>
</head> </head>