From 51ed36e4c3eccf19e19fb7fee56e0380bd488031 Mon Sep 17 00:00:00 2001 From: jikwan Date: Mon, 13 Nov 2023 22:49:56 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20Toast=20=EC=9C=84=EC=B9=98=20=EB=B2=84?= =?UTF-8?q?=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- src/components/toast/ToastContainer.tsx | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 9204eae..35d4f30 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@team-return/design-system", - "version": "1.1.9", + "version": "1.1.11", "repository": { "type": "git", "url": "https://github.com/Team-Return/JOBIS-DESIGN-SYSTEM.git" diff --git a/src/components/toast/ToastContainer.tsx b/src/components/toast/ToastContainer.tsx index 72bd4f4..6de6878 100644 --- a/src/components/toast/ToastContainer.tsx +++ b/src/components/toast/ToastContainer.tsx @@ -18,8 +18,9 @@ export const ToastContainer = () => { }; const _Container = styled.div` - position: absolute; + position: fixed; top: 30px; right: 30px; gap: 20px; + z-index: 100000; `;