event better mobile

This commit is contained in:
2026-02-10 21:21:19 +01:00
parent 6621c622d3
commit a867087bc5
2 changed files with 55 additions and 22 deletions

View File

@@ -68,7 +68,7 @@
padding: 0 1.5rem;
min-height: 80vh; /* Ensure content area has height */
position: relative;
z-index: 1;
/* z-index removed to allow fixed children (modals) to obey global z-index */
}
/* Clean Notion-style Cards */
@@ -355,6 +355,8 @@
margin: 0;
max-height: 85vh;
animation: slideUp 0.3s ease-out;
/* Extra padding at bottom to avoid overlap with bottom nav / home bar */
padding-bottom: 5rem;
}
@keyframes slideUp {
from { transform: translateY(100%); }
@@ -404,7 +406,7 @@
{% with messages = get_flashed_messages() %}
{% if messages %}
{% for message in messages %}
<div style="background: white; border: 1px solid var(--border-dim); color: var(--text-primary); padding: 12px; border-radius: 4px; margin-bottom: 20px; font-size: 0.9rem;">{{ message }}</div>
<div style="background: white; border: 1px solid var(--border-dim); color: var(--text-primary); padding: 12px; border-radius: 12px; margin-bottom: 20px; font-size: 0.9rem;">{{ message }}</div>
{% endfor %}
{% endif %}
{% endwith %}