From d95bfd13ed3b833299b69d96caad64b1f09f4165 Mon Sep 17 00:00:00 2001 From: aaniya22 Date: Tue, 26 May 2026 11:55:54 +0530 Subject: [PATCH 1/2] fix: move toast notification to bottom-right and update slide animation (#1716) --- src/theme/Root.module.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/theme/Root.module.css b/src/theme/Root.module.css index dd9aec7e..e33871c6 100644 --- a/src/theme/Root.module.css +++ b/src/theme/Root.module.css @@ -1,7 +1,7 @@ /* Base styles for the toast container */ .toastContainer { position: fixed; - top: 20px; + bottom: 20px; right: 24px; border: 1px solid oklch(0.69 0 0); border-radius: 8px; /* Docusaurus --radius var is often 8px */ @@ -94,7 +94,7 @@ @keyframes slideDownFadeOut { 0% { opacity: 0; - transform: translateY(-10px) scale(0.95); + transform: translateY(10px) scale(0.95); } 10%, 90% { @@ -103,6 +103,6 @@ } 100% { opacity: 0; - transform: translateY(-10px) scale(0.95); + transform: translateY(10px) scale(0.95); } -} +} \ No newline at end of file From 8a2090ee6a7eaa2fc9ae93d157693be81a4355a5 Mon Sep 17 00:00:00 2001 From: aditya singh rathore Date: Fri, 29 May 2026 10:29:11 +0530 Subject: [PATCH 2/2] Update Root.module.css --- src/theme/Root.module.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/theme/Root.module.css b/src/theme/Root.module.css index e33871c6..de0728ae 100644 --- a/src/theme/Root.module.css +++ b/src/theme/Root.module.css @@ -1,7 +1,7 @@ /* Base styles for the toast container */ .toastContainer { position: fixed; - bottom: 20px; + top: 30px; right: 24px; border: 1px solid oklch(0.69 0 0); border-radius: 8px; /* Docusaurus --radius var is often 8px */ @@ -105,4 +105,4 @@ opacity: 0; transform: translateY(10px) scale(0.95); } -} \ No newline at end of file +}