diff --git a/client/src/App.css b/client/src/App.css index 1b698f5..4b7481f 100644 --- a/client/src/App.css +++ b/client/src/App.css @@ -56,7 +56,7 @@ } .title { - margin: 50px 30px; + margin: 50px 20px; } .food-tables { diff --git a/client/src/App.tsx b/client/src/App.tsx index 5bb5acc..1758835 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -362,13 +362,14 @@ function App() { {dayIndex != null &&
- {dayIndex > 0 && handleDayChange(dayIndex - 1)} />} + 0 ? "initial" : "hidden" }} onClick={() => handleDayChange(dayIndex - 1)} />

{data.date}

- {dayIndex < 4 && handleDayChange(dayIndex + 1)} />} + handleDayChange(dayIndex + 1)} />
}