From 40b3fafacc1a3bfef7a4867546bf4c34c160374f Mon Sep 17 00:00:00 2001 From: Boris Cherepanov Date: Mon, 23 Mar 2026 15:57:03 +0300 Subject: [PATCH] fix: then height 100% --- furumi-node-player/client/src/index.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/furumi-node-player/client/src/index.css b/furumi-node-player/client/src/index.css index 8214183..ebf9a85 100644 --- a/furumi-node-player/client/src/index.css +++ b/furumi-node-player/client/src/index.css @@ -1,3 +1,8 @@ +html, +body { + height: 100%; +} + body { margin: 0; font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; @@ -5,6 +10,10 @@ body { background-color: #f3f6fb; } +#root { + height: 100%; +} + * { box-sizing: border-box; }