diff --git a/css/global.css b/css/global.css index b5ce310..6c57e33 100644 --- a/css/global.css +++ b/css/global.css @@ -80,7 +80,7 @@ body { display: none; width: 100%; position: fixed; - background: var(--mdc-theme-primary); + background: var(--mdc-theme-secondary); color: var(--mdc-theme-background); text-align: center; bottom: -100px; diff --git a/js/global.js b/js/global.js index a807f64..c228933 100644 --- a/js/global.js +++ b/js/global.js @@ -27,7 +27,7 @@ $(document).ready(function() { $(drawer_item_link_query_selector + "/index.html']").attr("aria-selected", "true"); // include cookie notice - if(Cookies.get("demo.matthew-grove.ml-cookies-accepted") != "true") { + if(Cookies.get("demo.mgrove.uk-cookies-accepted") != "true") { $("#cookies").show(); $("#cookies").animate({bottom: "0px"}, 1000); $(".source-code-link").animate({bottom: "100px"}, 1000); @@ -36,7 +36,7 @@ $(document).ready(function() { $("#cookies").animate({bottom: "-100px"}, 1000); setTimeout(function(){$("#cookies").hide()},1000); $(".source-code-link").animate({bottom: "15px"}, 1000); - Cookies.set("demo.matthew-grove.ml-cookies-accepted", "true", {expires: 30}); + Cookies.set("demo.mgrove.uk-cookies-accepted", "true", {expires: 30}); }); } });