From f232f2ba1f849279edfaedddef50b9c79ed5b5ce Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Mon, 9 Sep 2019 20:22:17 +0200 Subject: [PATCH] wait #2745 @1.5 --- .../styles/components/cookies-consent.styl | 26 +++++++++++++++++++ resources/views/layouts/app.blade.php | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 resources/styles/components/cookies-consent.styl diff --git a/resources/styles/components/cookies-consent.styl b/resources/styles/components/cookies-consent.styl new file mode 100644 index 0000000..8518c1d --- /dev/null +++ b/resources/styles/components/cookies-consent.styl @@ -0,0 +1,26 @@ +#cookie-consent + font-family theme('fontFamily.body') + height: 72px + width: 100vw + font-size: 14px + background-color: rgba(21, 47, 78, 0.8) + position: fixed + text-align center + bottom: 0 + color #fff + + @media (max-width: 1105px) + padding: 20px 20px + @media (max-width: 470px) + padding: 70px 20px + + div + margin-top: 25px; + display: inline-block; + + button + margin-left: 20px; + display: inline-block; + background-color: #0EAADA + padding: 9px 13px + border-radius: 3px diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php index 64c14da..8087490 100644 --- a/resources/views/layouts/app.blade.php +++ b/resources/views/layouts/app.blade.php @@ -14,7 +14,6 @@ @include('cubist::body.begin')
- @include('partials.header') @section('breadcrumbs') @@ -35,6 +34,7 @@
+@include('cubist::privacy.cookies-consent') @include('cubist::body.end') -- 2.39.5