Skip to content

Commit ee1ad51

Browse files
committed
margin-top を調整
1 parent 52a128b commit ee1ad51

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

_pages/time-table.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
---
66
{% include navbar.html %}
77

8-
{% comment %}
8+
{% comment %}
99
Jekyll プラグインで事前計算されたタイムテーブル表を使用
1010
ロジックはプラグインで計算済み。Liquid は描画のみを担当
1111
{% endcomment %}
@@ -17,7 +17,7 @@
1717
{% assign total_slots = tte.total_slots %}
1818
{% assign total_rooms = tte.total_rooms %}
1919

20-
<section class="w-[calc(100dvw-40px)] max-w-7xl mx-auto mt-25 xl:mt-5">
20+
<section class="w-[calc(100dvw-40px)] max-w-7xl mx-auto mt-25 xl:mt-15">
2121
<h2 class="text-4xl text-center mb-8">
2222
タイムテーブル
2323
<span class="block mt-3 text-2xl">TIME TABLE</span>
@@ -43,12 +43,12 @@ <h2 class="text-4xl text-center mb-8">
4343
{% for slot in (0..total_slots) %}
4444
<tr>
4545
<th scope="row" class="ttable__cell ttable__cell--start">{{ time_labels[slot] }}</th>
46-
46+
4747
{% comment %} 各イベントを描画 {% endcomment %}
4848
{% for room_index in (0..total_rooms) %}
4949
{% assign event = events[slot][room_index] %}
5050
{% assign room = rooms[room_index] %}
51-
51+
5252
{% if event == 'continued' %}
5353
{% comment %} イベント継続中 (rowspan で描画するため出力は不要) {% endcomment %}
5454
{% elsif event %}

0 commit comments

Comments
 (0)