diff --git a/.changeset/hot-doors-wait.md b/.changeset/hot-doors-wait.md new file mode 100644 index 0000000000000..c84515f50c37b --- /dev/null +++ b/.changeset/hot-doors-wait.md @@ -0,0 +1,5 @@ +--- +'@rocket.chat/meteor': patch +--- + +ensure toast notifications appear above modals diff --git a/apps/meteor/app/theme/client/main.css b/apps/meteor/app/theme/client/main.css index 036ed328b4233..589a9df39d86a 100644 --- a/apps/meteor/app/theme/client/main.css +++ b/apps/meteor/app/theme/client/main.css @@ -14,3 +14,9 @@ @import url('imports/general/theme_old.css'); @import url('./rocketchat.font.css'); @import url('../../../node_modules/@rocket.chat/fuselage/dist/fuselage.css'); + +/* Toast above modals */ +#toastBarRoot { + position: fixed; + z-index: 10000; +} \ No newline at end of file