ASP.NET Core and C# for cross-platform server-side
diff --git a/pac-man-board-game/ClientApp/src/components/Layout.tsx b/pac-man-board-game/ClientApp/src/components/Layout.tsx
index 8c0fe2d..21d061c 100644
--- a/pac-man-board-game/ClientApp/src/components/Layout.tsx
+++ b/pac-man-board-game/ClientApp/src/components/Layout.tsx
@@ -1,7 +1,7 @@
-import React, {JSX} from "react";
+import React from "react";
import {NavMenu} from "./NavMenu";
-export const Layout = ({children}: { children: JSX.Element }) => (
+export const Layout = ({children}: { children: React.ReactNode }) => (
diff --git a/pac-man-board-game/ClientApp/src/components/NavMenu.css b/pac-man-board-game/ClientApp/src/components/NavMenu.css
deleted file mode 100644
index 14b1aa9..0000000
--- a/pac-man-board-game/ClientApp/src/components/NavMenu.css
+++ /dev/null
@@ -1,19 +0,0 @@
-a.navbar-brand {
- white-space: normal;
- text-align: center;
- word-break: break-all;
-}
-
-html {
- font-size: 14px;
-}
-
-@media (min-width: 768px) {
- html {
- font-size: 16px;
- }
-}
-
-.box-shadow {
- box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
-}
diff --git a/pac-man-board-game/ClientApp/src/components/NavMenu.tsx b/pac-man-board-game/ClientApp/src/components/NavMenu.tsx
index e007e12..24fc40c 100644
--- a/pac-man-board-game/ClientApp/src/components/NavMenu.tsx
+++ b/pac-man-board-game/ClientApp/src/components/NavMenu.tsx
@@ -1,6 +1,5 @@
import React from "react";
import {Link} from "react-router-dom";
-import "./NavMenu.css";
export const NavMenu = () => {
diff --git a/pac-man-board-game/ClientApp/src/custom.css b/pac-man-board-game/ClientApp/src/custom.css
deleted file mode 100644
index 95db565..0000000
--- a/pac-man-board-game/ClientApp/src/custom.css
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Provide sufficient contrast against white background */
-a {
- color: #0366d6;
-}
-
-.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
- box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
-}
-
-code {
- color: #E01A76;
-}
-
-.btn-primary {
- color: #fff;
- background-color: #1b6ec2;
- border-color: #1861ac;
-}
diff --git a/pac-man-board-game/ClientApp/src/index.css b/pac-man-board-game/ClientApp/src/index.css
new file mode 100644
index 0000000..a8af36a
--- /dev/null
+++ b/pac-man-board-game/ClientApp/src/index.css
@@ -0,0 +1,12 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
+
+.debug {
+ @apply border border-red-500;
+ @apply after:content-['debug'] after:absolute;
+}
+
+h1 {
+ @apply text-4xl;
+}
diff --git a/pac-man-board-game/ClientApp/tailwind.config.js b/pac-man-board-game/ClientApp/tailwind.config.js
new file mode 100644
index 0000000..1ec9c51
--- /dev/null
+++ b/pac-man-board-game/ClientApp/tailwind.config.js
@@ -0,0 +1,12 @@
+/** @type {import('tailwindcss').Config} */
+module.exports = {
+ content: [
+ "./index.html",
+ "./src/**/*.{js,ts,jsx,tsx}",
+ ],
+ theme: {
+ extend: {},
+ },
+ plugins: [],
+}
+
diff --git a/pac-man-board-game/ClientApp/tsconfig.json b/pac-man-board-game/ClientApp/tsconfig.json
index 6cbf5d3..646bd0c 100644
--- a/pac-man-board-game/ClientApp/tsconfig.json
+++ b/pac-man-board-game/ClientApp/tsconfig.json
@@ -12,7 +12,8 @@
"target": "ESNext",
"module": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
- "types": ["vite/client", "vite-plugin-svgr/client"],
+ "types": ["vite/client", "vite-plugin-svgr/client", "jest"],
+ "moduleResolution": "node",
},
"include": [
"src"
diff --git a/pac-man-board-game/ClientApp/vite.config.ts b/pac-man-board-game/ClientApp/vite.config.ts
index f8e0ac0..64ffa17 100644
--- a/pac-man-board-game/ClientApp/vite.config.ts
+++ b/pac-man-board-game/ClientApp/vite.config.ts
@@ -1,5 +1,5 @@
-import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
+import { defineConfig } from "vite";
// @ts-ignore
import fs from "fs";