From e132f4f0b191cbd27b901b6feca82bebf4361606 Mon Sep 17 00:00:00 2001 From: Daniel Sternlicht Date: Sun, 31 Dec 2023 14:49:52 +0200 Subject: [PATCH] Responsive fix --- package.json | 2 +- src/components/app.scss | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 3f11117..fe21153 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "restool", - "version": "2.2.16", + "version": "2.2.17", "dependencies": { "@testing-library/jest-dom": "^4.2.4", "@testing-library/react": "^9.4.0", diff --git a/src/components/app.scss b/src/components/app.scss index 300d9d6..bf4aa3c 100644 --- a/src/components/app.scss +++ b/src/components/app.scss @@ -50,5 +50,9 @@ position: relative; flex: 1; max-width: calc(100vw - 30px - var(--nav-width)); + + @media screen and (max-width: 800px) { + max-width: 100%; + } } } \ No newline at end of file