From 7d256e73b6807da176463b13dfeb316b53cf0104 Mon Sep 17 00:00:00 2001 From: George Lima Date: Mon, 10 Dec 2018 21:40:17 -0300 Subject: [PATCH] hotfix: make layout flex --- app/components/layout.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/components/layout.js b/app/components/layout.js index da7f568..2dc0ba7 100644 --- a/app/components/layout.js +++ b/app/components/layout.js @@ -4,6 +4,8 @@ import React from 'react'; import styled from 'styled-components'; const Layout = styled.div` + display: flex; + flex-direction: column; width: 100%; height: 100vh; background: ${props => props.theme.colors.secondary};