style home buttons
parent
1b22a6a31b
commit
cb1a1e6f9d
|
@ -2,6 +2,6 @@
|
|||
|
||||
@(open_shift: &Shift)
|
||||
|
||||
<button hx-post="/api/shifts/@open_shift.id/close" hx-swap="outerHTML" hx-target="body" type="button">
|
||||
<button hx-post="/api/shifts/@open_shift.id/close" hx-swap="outerHTML" hx-target="body" type="button" class="focus:outline-none text-white bg-red-700 hover:bg-red-800 focus:ring-4 focus:ring-red-300 font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2">
|
||||
Close Shift
|
||||
</button>
|
||||
|
|
|
@ -9,13 +9,13 @@
|
|||
</div>
|
||||
@if open_shift.is_some() {
|
||||
<div hx-boost="true" class="flex justify-center items-center">
|
||||
<a href="/shifts/@open_shift.unwrap().id/drinks">
|
||||
<a href="/shifts/@open_shift.unwrap().id/drinks" class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2 " >
|
||||
<button type="button">Drinks</button>
|
||||
</a>
|
||||
</div>
|
||||
}
|
||||
<div hx-boost="true" class="flex justify-center items-center">
|
||||
<a href="/management">
|
||||
<a href="/management" class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2 ">
|
||||
<button type="button">Management</button>
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
@()
|
||||
|
||||
<button hx-post="/api/shifts/open" hx-swap="outerHTML" hx-target="body" type="button">
|
||||
<button hx-post="/api/shifts/open" hx-swap="outerHTML" hx-target="body" type="button" class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2 ">
|
||||
Open Shift
|
||||
</button>
|
||||
|
|
Loading…
Reference in New Issue