diff options
Diffstat (limited to 'assets/css/scss/components/_cookie-consent.scss')
-rw-r--r-- | assets/css/scss/components/_cookie-consent.scss | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/assets/css/scss/components/_cookie-consent.scss b/assets/css/scss/components/_cookie-consent.scss new file mode 100644 index 0000000..6ce2f5b --- /dev/null +++ b/assets/css/scss/components/_cookie-consent.scss @@ -0,0 +1,17 @@ +// +// Cookie Consent // +// +#cookie-consent { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 997; + visibility: visible; + opacity: 1; + @include transition(ease-out 0.2s); + &.consent-hidden { + visibility: hidden; + opacity: 0; + } +}
\ No newline at end of file |