Skip to content

Commit

Permalink
fix: Toast 위치 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jikwan0327 committed Nov 13, 2023
1 parent d5ef308 commit 51ed36e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
3 changes: 2 additions & 1 deletion src/components/toast/ToastContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ export const ToastContainer = () => {
};

const _Container = styled.div`
position: absolute;
position: fixed;
top: 30px;
right: 30px;
gap: 20px;
z-index: 100000;
`;

0 comments on commit 51ed36e

Please sign in to comment.