frontend: Wrap timezone in textarea

This commit is contained in:
Lennart
2025-04-26 11:31:55 +02:00
parent 8ae8a5cda7
commit 1f915b73de
2 changed files with 5 additions and 1 deletions

View File

@@ -189,3 +189,7 @@ table {
} }
} }
} }
textarea {
width: 100%;
}

View File

@@ -26,7 +26,7 @@
<p>{{ timezone_id }}</p> <p>{{ timezone_id }}</p>
{% endif %} {% endif %}
{% if let Some(timezone) = calendar.timezone %} {% if let Some(timezone) = calendar.timezone %}
<pre>{{ timezone }}</pre> <textarea rows="16" readonly>{{ timezone }}</textarea>
{% endif %} {% endif %}