From bb6cc0565502bd157c916a0e6e22e0bf02e4e4f2 Mon Sep 17 00:00:00 2001 From: Yann Braga Date: Sun, 13 Sep 2020 16:02:06 +0200 Subject: [PATCH] fix(components): make docs take full height --- lib/components/src/blocks/DocsPage.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/components/src/blocks/DocsPage.tsx b/lib/components/src/blocks/DocsPage.tsx index 1bc70960a584..2ef0df238460 100644 --- a/lib/components/src/blocks/DocsPage.tsx +++ b/lib/components/src/blocks/DocsPage.tsx @@ -50,6 +50,8 @@ export const DocsWrapper = styled.div<{}>(({ theme }) => ({ display: 'flex', justifyContent: 'center', padding: '4rem 20px', + minHeight: '100vh', + boxSizing: 'border-box', [`@media (min-width: ${breakpoint}px)`]: {}, }));