Skip to content

Commit

Permalink
client: Make Toast component in front of the overlay layout
Browse files Browse the repository at this point in the history
  • Loading branch information
XxRoloxX committed Nov 30, 2024
1 parent 3e33d28 commit 2f53d0a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
z-index: 999;
}

.modal-content {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const EmailTable = () => {
await ManagmentServiceApiInstance.deleteEmailChannel(props.id);
showMessage({
message: 'Email channel was deleted',
type: 'INFO',
type: 'WARNING',
});
} catch (e: unknown) {
showMessage({
Expand Down
1 change: 1 addition & 0 deletions client/src/providers/ToastProvider/ToastProvider.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
display: flex;
flex-direction: column;
row-gap: 1rem;
z-index: 1000;

@media (max-width: $sm) {
width: 90vw;
Expand Down

0 comments on commit 2f53d0a

Please sign in to comment.