From 192795b4e8b9f339e68df578aa194db3eb2db1ce Mon Sep 17 00:00:00 2001 From: Dhaverd Date: Sun, 10 May 2026 20:35:04 +0200 Subject: [PATCH 1/3] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20app/assets/styles/home.css?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/assets/styles/home.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/assets/styles/home.css b/app/assets/styles/home.css index 43919d4..3129c66 100644 --- a/app/assets/styles/home.css +++ b/app/assets/styles/home.css @@ -17,7 +17,8 @@ .bg-dark { background-color: #282c34; - height: 100%; + min-height: 100%; + height: auto; } .list-container { From 03ec32c0a25390efcaf667d8f18e5ca7f9971742 Mon Sep 17 00:00:00 2001 From: Dhaverd Date: Sun, 10 May 2026 20:41:32 +0200 Subject: [PATCH 2/3] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20app/routes/home.tsx?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/routes/home.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/routes/home.tsx b/app/routes/home.tsx index 12b96e9..e5220e3 100644 --- a/app/routes/home.tsx +++ b/app/routes/home.tsx @@ -92,9 +92,10 @@ export default function Home() { onMouseLeave={() => setFabIsHovered(false)} variant={fabIsHovered ? 'extended' : 'circular'} sx={{ - position: 'absolute', + position: 'fixed', bottom: 16, right: 16, + z-index: 1000, width: fabIsHovered ? '160px' : '56px', // Переход между кругом и овалом transition: 'width 0.3s ease-in-out', overflow: 'hidden', From e73d00843172e4854ac33cf55dba9501d99ad796 Mon Sep 17 00:00:00 2001 From: Dhaverd Date: Sun, 10 May 2026 20:42:21 +0200 Subject: [PATCH 3/3] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20app/routes/home.tsx?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/routes/home.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/home.tsx b/app/routes/home.tsx index e5220e3..5e5d20b 100644 --- a/app/routes/home.tsx +++ b/app/routes/home.tsx @@ -95,7 +95,7 @@ export default function Home() { position: 'fixed', bottom: 16, right: 16, - z-index: 1000, + zIndex: 1000, width: fabIsHovered ? '160px' : '56px', // Переход между кругом и овалом transition: 'width 0.3s ease-in-out', overflow: 'hidden',