From ac060f7528bf5218d78f4aacaaf58961c0dbcb90 Mon Sep 17 00:00:00 2001 From: Matthew Grove Date: Sat, 17 Nov 2018 18:23:30 +0000 Subject: [PATCH] Fix styling bug on cookie notice --- assets/global.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/assets/global.css b/assets/global.css index ed1744e..f9e9f13 100644 --- a/assets/global.css +++ b/assets/global.css @@ -56,8 +56,6 @@ body { #cookies { display: none; width: 100%; - height: 70px; - padding-top: 30px; position: fixed; background: var(--mdc-theme-primary); color: var(--mdc-theme-background); @@ -67,7 +65,11 @@ body { z-index: 9999; } - #cookies p a { +#cookies p { + margin: 10px; +} + +#cookies p a { color: var(--mdc-theme-secondary); text-decoration: none; }