mirror of
https://github.com/GithubOrgProjectPiza/frontend.git
synced 2026-09-04 08:36:08 +02:00
Fix Formatting
This commit is contained in:
+1
-2
@@ -1,14 +1,13 @@
|
|||||||
@tailwind base;
|
@tailwind base;
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');
|
@import url("https://fonts.googleapis.com/css2?family=Quicksand&display=swap");
|
||||||
|
|
||||||
@import url("https://fonts.googleapis.com/css2?family=Quicksand&display=swap");
|
@import url("https://fonts.googleapis.com/css2?family=Quicksand&display=swap");
|
||||||
|
|
||||||
.App {
|
.App {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-family: quicksand, arial;
|
font-family: quicksand, arial;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.App-logo {
|
.App-logo {
|
||||||
|
|||||||
+9
-9
@@ -29,15 +29,15 @@ function App() {
|
|||||||
<div className="App">
|
<div className="App">
|
||||||
<QueryClientProvider client={queryClient}>
|
<QueryClientProvider client={queryClient}>
|
||||||
<BrowserRouter>
|
<BrowserRouter>
|
||||||
<Routes>
|
<Routes>
|
||||||
<Route path="/" element={<MainPage />} />
|
<Route path="/" element={<MainPage />} />
|
||||||
<Route path="endpage" element={<EndPage />} />
|
<Route path="endpage" element={<EndPage />} />
|
||||||
<Route path="liste" element={<Listenansicht />} />
|
<Route path="liste" element={<Listenansicht />} />
|
||||||
<Route path="registrierung" element={<Registrierung />} />
|
<Route path="registrierung" element={<Registrierung />} />
|
||||||
<Route path="anmeldung" element={<Anmeldepage />} />
|
<Route path="anmeldung" element={<Anmeldepage />} />
|
||||||
<Route path="warenkorb" element={<Warenkorb />} />
|
<Route path="warenkorb" element={<Warenkorb />} />
|
||||||
</Routes>
|
</Routes>
|
||||||
</BrowserRouter>
|
</BrowserRouter>
|
||||||
</QueryClientProvider>
|
</QueryClientProvider>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ function Listenansicht(props) {
|
|||||||
</div>
|
</div>
|
||||||
{listen}
|
{listen}
|
||||||
<div class="flex justify-end ">
|
<div class="flex justify-end ">
|
||||||
<ButtonPrimary name="Restaurants"></ButtonPrimary>
|
<ButtonPrimary name="Restaurants"></ButtonPrimary>
|
||||||
<Link to="/warenkorb">
|
<Link to="/warenkorb">
|
||||||
<ButtonPrimary name="Warenkorb"></ButtonPrimary>
|
<ButtonPrimary name="Warenkorb"></ButtonPrimary>
|
||||||
</Link>
|
</Link>
|
||||||
|
|||||||
@@ -23,7 +23,9 @@ function MainPage() {
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Header1 />
|
<Header1 />
|
||||||
<div class="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-4" href="/liste">{listen}</div>
|
<div class="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-4" href="/liste">
|
||||||
|
{listen}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user