Skip to content

Commit

Permalink
py-1の追加 (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
maeyuu8314 authored Oct 10, 2024
1 parent 0c35e36 commit 3ed5e11
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions app/templates/incoming-placements.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
<header class="w-full px-16 py-3 flex gap-3 border-b border-gray-500 text-2xl">
<nav class="flex-grow">
<ul class="flex flex-row gap-3">
<li><a href="/" class="cursor-pointer px-2 rounded bg-gray-300">ホーム</a></li>
<li><a href="/" class="cursor-pointer px-2 py-1 rounded bg-gray-300">ホーム</a></li>
</ul>
</nav>
<form id="placements-filter" action="/placements" method="GET" class="mb-0 hidden md:flex md:flex-row gap-3">
<a href="/placements/incoming" class="cursor-pointer px-2 rounded bg-gray-900 text-white">未受取</a>
<a href="/placements/resolved" class="cursor-pointer px-2 rounded bg-gray-300">処理済</a>
<a href="/placements/incoming" class="cursor-pointer px-2 py-1 rounded bg-gray-900 text-white">未受取</a>
<a href="/placements/resolved" class="cursor-pointer px-2 py-1 rounded bg-gray-300">処理済</a>
</form>
{{ clock() }}
</header>
Expand Down
2 changes: 1 addition & 1 deletion app/templates/order.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<button
hx-delete="/order/items"
hx-target="#order-session"
class="text-xl text-center text-white px-2 rounded bg-red-600 hidden sm:inline-block"
class="text-xl text-center text-white px-2 py-1 rounded bg-red-600 hidden sm:inline-block"
tabindex="0"
>全消去</button>
</div>
Expand Down
7 changes: 3 additions & 4 deletions app/templates/resolved-placements.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,12 @@
<header class="w-full px-16 py-3 flex gap-3 border-b border-gray-500 text-2xl">
<nav class="flex-grow">
<ul class="flex flex-row gap-3">
<li><a href="/" class="cursor-pointer px-2 rounded bg-gray-300">ホーム</a></li>
<li><a hx-post="/order" class="cursor-pointer px-2 rounded bg-gray-300 hidden md:inline-block">注文</a></li>
<li><a href="/" class="cursor-pointer px-2 py-1 rounded bg-gray-300">ホーム</a></li>
</ul>
</nav>
<form id="placements-filter" action="/placements" method="GET" class="mb-0 hidden md:flex md:flex-row gap-3">
<a href="/placements/incoming" class="cursor-pointer px-2 rounded bg-gray-300">未受取</a>
<a href="/placements/resolved" class="cursor-pointer px-2 rounded bg-gray-900 text-white">処理済</a>
<a href="/placements/incoming" class="cursor-pointer px-2 py-1 rounded bg-gray-300">未受取</a>
<a href="/placements/resolved" class="cursor-pointer px-2 py-1 rounded bg-gray-900 text-white">処理済</a>
</form>
{{ clock() }}
</header>
Expand Down

0 comments on commit 3ed5e11

Please sign in to comment.