mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 06:27:11 +01:00
update tailwindcss@4
This commit is contained in:
@@ -10,4 +10,4 @@ export default function MyApp({ Component, pageProps }) {
|
||||
<Analytics />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -38,7 +38,7 @@ function ShowBookingAdmin({ booking: bookingProp }: { booking: IBooking }) {
|
||||
<Calendar start={booking.startDate} end={booking.endDate} />
|
||||
<BookingTable booking={booking} />
|
||||
{storingBookingError && (
|
||||
<div className="error-message flex-grow">{storingBookingError}</div>
|
||||
<div className="error-message grow">{storingBookingError}</div>
|
||||
)}
|
||||
<div className="my-6">
|
||||
<button
|
||||
|
||||
@@ -49,7 +49,7 @@ export default function ShowBooking({
|
||||
<strong>Buchungszeitraum:</strong> {daysFormatFrontend(booking.days)}
|
||||
</div>
|
||||
{storingBookingError && (
|
||||
<div className="error-message flex-grow">{storingBookingError}</div>
|
||||
<div className="error-message grow">{storingBookingError}</div>
|
||||
)}
|
||||
{[BOOKING_STATUS.CONFIRMED, BOOKING_STATUS.REQUESTED].includes(
|
||||
booking.status
|
||||
|
||||
@@ -33,7 +33,7 @@ export default function Home() {
|
||||
</Link>
|
||||
</p>
|
||||
<div className="mt-5 sm:mt-8 sm:flex sm:justify-center">
|
||||
<div className="rounded-md shadow">
|
||||
<div className="rounded-md shadow-sm">
|
||||
<Link
|
||||
href="/book"
|
||||
className="w-full flex items-center justify-center px-6 py-2 border border-transparent text-base font-medium rounded-md text-white bg-blue-800 hover:bg-blue-900 md:py-2 md:text-lg md:px-5"
|
||||
|
||||
Reference in New Issue
Block a user