From 88d3a53165cf46e15a93da6931c2f94272fb1c27 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Tue, 19 Dec 2017 19:24:39 +0100 Subject: [PATCH] Make backdrop work --- client/coral-ui/components/Dialog.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/client/coral-ui/components/Dialog.css b/client/coral-ui/components/Dialog.css index 9e7700299..7c260cbbf 100644 --- a/client/coral-ui/components/Dialog.css +++ b/client/coral-ui/components/Dialog.css @@ -1,3 +1,14 @@ .dialog { } + +:global(.backdrop) { + z-index: 100148; + left: 0; + top: 0; + width: 100%; + height: 100%; + position: absolute; + background-color: black; + opacity: 0.1; +}