Commit b488fafb authored by Lyza Danger Gardner's avatar Lyza Danger Gardner Committed by Lyza Gardner

Ensure toast messages are not obscured by dialog tabs

parent eda8c127
......@@ -86,7 +86,12 @@ export default function BaseToastMessages({
<ul
aria-live="polite"
aria-relevant="additions"
className="absolute z-2 left-0 w-full"
className={classnames(
// Set an aggressive z-index as we want to ensure toast messages are
// rendered above other content
'z-10',
'absolute left-0 w-full'
)}
>
{messages.map(message => (
<li
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment