summaryrefslogtreecommitdiff
path: root/templates/form.html
diff options
context:
space:
mode:
authorTyler Hoang <tyler@tylerhoang.xyz>2026-05-09 01:33:30 -0700
committerTyler Hoang <tyler@tylerhoang.xyz>2026-05-09 01:33:30 -0700
commit6aed9460ad0555c9f51eaaf09aad1dd89e69bdfe (patch)
tree55ac95ccd4568323cad2441f590d242ce8fdfc51 /templates/form.html
parent596d80d15845da3fb105c26a30457da8ee698be7 (diff)
Center stars with h1 by moving eyebrow above flex row
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'templates/form.html')
-rw-r--r--templates/form.html26
1 files changed, 13 insertions, 13 deletions
diff --git a/templates/form.html b/templates/form.html
index 05006e0..83e888e 100644
--- a/templates/form.html
+++ b/templates/form.html
@@ -14,20 +14,20 @@
{% set current_stars = film.stars if film and film.stars else 0 %}
<input type="hidden" id="stars" name="stars" value="{{ current_stars }}">
<div class="form-heading">
- <div>
- <p class="eyebrow">Diary Entry</p>
+ <p class="eyebrow">Diary Entry</p>
+ <div class="form-heading-row">
<h1>{{ page_title }}</h1>
- </div>
- <div class="star-control" role="group" aria-label="Rate film" data-form-stars data-current-stars="{{ current_stars }}">
- {% for value in range(1, 4) %}
- <button
- type="button"
- class="star-button {% if current_stars >= value %}is-active{% endif %}"
- data-stars="{{ value }}"
- aria-label="{{ value }} star{% if value > 1 %}s{% endif %}"
- aria-pressed="{% if current_stars >= value %}true{% else %}false{% endif %}"
- >✦</button>
- {% endfor %}
+ <div class="star-control" role="group" aria-label="Rate film" data-form-stars data-current-stars="{{ current_stars }}">
+ {% for value in range(1, 4) %}
+ <button
+ type="button"
+ class="star-button {% if current_stars >= value %}is-active{% endif %}"
+ data-stars="{{ value }}"
+ aria-label="{{ value }} star{% if value > 1 %}s{% endif %}"
+ aria-pressed="{% if current_stars >= value %}true{% else %}false{% endif %}"
+ >✦</button>
+ {% endfor %}
+ </div>
</div>
</div>