From 77d6165f1134eaa0fa64dd41536a94724409723d Mon Sep 17 00:00:00 2001 From: checktheroads Date: Tue, 24 Mar 2020 12:31:34 -0700 Subject: [PATCH] fix header padding --- hyperglass/ui/components/Layout.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyperglass/ui/components/Layout.js b/hyperglass/ui/components/Layout.js index b2e6465..d9f588e 100644 --- a/hyperglass/ui/components/Layout.js +++ b/hyperglass/ui/components/Layout.js @@ -13,7 +13,7 @@ const AnimatedForm = motion.custom(HyperglassForm); const bg = { light: "white", dark: "black" }; const color = { light: "black", dark: "white" }; -const headerHeightDefault = { true: [16, 16, 16, 16], false: [24, 64, 64, 64] }; +const headerHeightDefault = { true: [16, 16, 32, 32], false: [24, 64, 64, 64] }; const headerHeightAll = { true: [32, 32, 32, 32], false: [48, "20rem", "20rem", "20rem"] }; const Layout = () => {