From 636bb496c93ead07809dc3414e31af3a609482df Mon Sep 17 00:00:00 2001 From: flavio-b Date: Fri, 9 Sep 2022 19:07:16 -0300 Subject: [PATCH] Set toast z-index variable in the correct spot The .toast-container tries to use the z-index CSS variable, which is defined under .toast. However, this variable is not accessible to the container. This change copies the variable to the spot where it can be used. --- scss/_toasts.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scss/_toasts.scss b/scss/_toasts.scss index c34e49b2418b..2ce378d5bc96 100644 --- a/scss/_toasts.scss +++ b/scss/_toasts.scss @@ -38,6 +38,8 @@ } .toast-container { + --#{$prefix}toast-zindex: #{$zindex-toast}; + position: absolute; z-index: var(--#{$prefix}toast-zindex); width: max-content;