diff --git a/react-lernkarten-schulung/package-lock.json b/react-lernkarten-schulung/package-lock.json index aee5906..4e18d20 100644 --- a/react-lernkarten-schulung/package-lock.json +++ b/react-lernkarten-schulung/package-lock.json @@ -664,9 +664,6 @@ "arm64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -684,9 +681,6 @@ "arm64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -704,9 +698,6 @@ "ppc64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -724,9 +715,6 @@ "s390x" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -744,9 +732,6 @@ "x64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -764,9 +749,6 @@ "x64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -1783,9 +1765,6 @@ "arm64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MPL-2.0", "optional": true, "os": [ @@ -1807,9 +1786,6 @@ "arm64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MPL-2.0", "optional": true, "os": [ @@ -1831,9 +1807,6 @@ "x64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MPL-2.0", "optional": true, "os": [ @@ -1855,9 +1828,6 @@ "x64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MPL-2.0", "optional": true, "os": [ diff --git a/react-lernkarten-schulung/src/App.css b/react-lernkarten-schulung/src/App.css index 3650a50..30c9a3f 100644 --- a/react-lernkarten-schulung/src/App.css +++ b/react-lernkarten-schulung/src/App.css @@ -1,11 +1,20 @@ +* { + margin: 0; +} + #root { min-height: 100vh; } .site-shell { - display: flex; - min-height: 100vh; - flex-direction: column; + display: grid; + height: 100vh; + grid-auto-rows: auto 1fr auto; +} + +main { + overflow: auto; + width: 100vw; } .site-header { diff --git a/react-lernkarten-schulung/src/App.jsx b/react-lernkarten-schulung/src/App.jsx index 528f2d4..04b9b1e 100644 --- a/react-lernkarten-schulung/src/App.jsx +++ b/react-lernkarten-schulung/src/App.jsx @@ -71,7 +71,8 @@ function App() {
-
+
+
} /> +