fix: pointer-events issue on toast container (#2139)

This commit is contained in:
bydawen
2025-10-18 00:26:03 +03:00
committed by GitHub
parent 8b6a350808
commit e4ea69266f

View File

@@ -37,3 +37,9 @@
min-height: 100vh;
}
}
// Fix a bug with a toast on edit tags sheet component: can't click on close toast button
// https://github.com/openedx/frontend-app-authoring/issues/1898
#toast-root[data-focus-on-hidden] {
pointer-events: initial !important;
}