From dad62c79b37c432e335f5312021b6788633f40d4 Mon Sep 17 00:00:00 2001 From: Alain Nicolas Date: Fri, 8 Dec 2023 11:15:49 +0100 Subject: [PATCH] feat: As a User, I want to check my POH status (#462) --- website/package.json | 2 +- website/src/App.css | 2 +- website/src/App.tsx | 3 +- website/src/components/Navbar.tsx | 9 ++- website/src/index.css | 4 +- website/src/pages/Poh.css | 17 ++++++ website/src/pages/Poh.tsx | 95 ++++++++++++++++++++++--------- 7 files changed, 97 insertions(+), 35 deletions(-) diff --git a/website/package.json b/website/package.json index f1904f90..1f316604 100644 --- a/website/package.json +++ b/website/package.json @@ -17,7 +17,7 @@ "type": "module", "scripts": { "build": "tsc && vite build", - "dev": "vite", + "dev": "vite --force", "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "preview": "vite preview" }, diff --git a/website/src/App.css b/website/src/App.css index e9aa0a87..c7637078 100644 --- a/website/src/App.css +++ b/website/src/App.css @@ -35,7 +35,7 @@ } .card { - padding: 0.5em; + padding: 0.2em; } .read-the-docs { diff --git a/website/src/App.tsx b/website/src/App.tsx index 0c17c9a6..121cb391 100644 --- a/website/src/App.tsx +++ b/website/src/App.tsx @@ -7,7 +7,6 @@ import Navbar from "./components/Navbar.tsx"; import Footer from "./components/Footer.tsx"; function App() { - return (
@@ -16,7 +15,7 @@ function App() { } /> } /> - } /> + } />