Created
February 1, 2026 16:32
-
-
Save jalehman/57f4e5532fb2360e5cfdef4af24caae8 to your computer and use it in GitHub Desktop.
Simple test drop for UI sizing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Simple Test Drop</title> | |
| <style> | |
| body { | |
| font-family: system-ui, sans-serif; | |
| max-width: 600px; | |
| margin: 40px auto; | |
| padding: 20px; | |
| line-height: 1.6; | |
| } | |
| h1 { color: #333; } | |
| p { color: #666; } | |
| </style> | |
| </head> | |
| <body> | |
| <h1>Simple Test Drop</h1> | |
| <p>This is a minimal page to test if the annotation and revision UI renders at the correct size.</p> | |
| <p>Select this text to see the Annotate button appear.</p> | |
| <p>The revision bar should appear at the bottom of the screen.</p> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment