diff options
author | ThibG <thib@sitedethib.com> | 2019-11-22 15:56:59 +0100 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-11-23 19:08:46 +0100 |
commit | 271b2e68f33e8086eb4a1ee44694fcd2ecd7ab07 (patch) | |
tree | 2df762b1b6d46f64f97991a70267d96a4509cdd1 | |
parent | 962f4854230b0f5d6abfdcc4f644b0bfef7ff29d (diff) |
[Glitch] Fix blur behind closed registration message
Port SCSS changes from 42b3b019e01ee0c290a510483a2400e85cc250f1 to glitch flavour Signed-off-by: Thibaut Girka <thib@sitedethib.com>
-rw-r--r-- | app/javascript/flavours/glitch/styles/forms.scss | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/styles/forms.scss b/app/javascript/flavours/glitch/styles/forms.scss index 747c5309d..1920c33ea 100644 --- a/app/javascript/flavours/glitch/styles/forms.scss +++ b/app/javascript/flavours/glitch/styles/forms.scss @@ -504,6 +504,10 @@ code { &__overlay-area { position: relative; + &__blurred form { + filter: blur(2px); + } + &__overlay { position: absolute; top: 0; @@ -514,8 +518,10 @@ code { justify-content: center; align-items: center; background: rgba($ui-base-color, 0.65); - backdrop-filter: blur(2px); border-radius: 4px; + margin-left: -4px; + margin-top: -4px; + padding: 4px; &__content { text-align: center; |