This commit is contained in:
2026-04-04 06:41:02 -07:00
parent 3fc5e9f215
commit 078b3a4cdd
26 changed files with 704 additions and 249 deletions

View File

@@ -2,14 +2,36 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>{% block title %}ORA Editor{% endblock %}</title>
<script src="https://cdn.tailwindcss.com"></script>
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
<style>
/* Prevent double-tap zoom and improve touch response */
* {
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
button, input, select, textarea {
-webkit-user-select: text;
user-select: text;
}
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #374151; }
::-webkit-scrollbar-thumb { background: #6B7280; border-radius: 4px; }
/* Mobile touch improvements */
@media (max-width: 1023px) {
body {
touch-action: manipulation;
}
input[type="range"] {
height: 1.5rem !important;
}
}
</style>
{% block head %}{% endblock %}
</head>