From 6068e06e77974688dfae34c6f09a9ece429e1cdc Mon Sep 17 00:00:00 2001
From: shmck <shawn.j.mckay@gmail.com>
Date: Thu, 23 Jul 2020 07:56:06 -0700
Subject: [PATCH] fix window width

Signed-off-by: shmck <shawn.j.mckay@gmail.com>
---
 web-app/src/containers/Tutorial/containers/Review.tsx | 1 -
 web-app/src/containers/Tutorial/index.tsx             | 1 +
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/web-app/src/containers/Tutorial/containers/Review.tsx b/web-app/src/containers/Tutorial/containers/Review.tsx
index 9cb4247a..7a0b5ba9 100644
--- a/web-app/src/containers/Tutorial/containers/Review.tsx
+++ b/web-app/src/containers/Tutorial/containers/Review.tsx
@@ -11,7 +11,6 @@ interface Props {
 const styles = {
   container: {
     height: 'auto',
-    width: '100%',
     display: 'flex' as 'flex',
     flexDirection: 'column' as 'column',
   },
diff --git a/web-app/src/containers/Tutorial/index.tsx b/web-app/src/containers/Tutorial/index.tsx
index 18654d42..1dd51469 100644
--- a/web-app/src/containers/Tutorial/index.tsx
+++ b/web-app/src/containers/Tutorial/index.tsx
@@ -19,6 +19,7 @@ import CompletedBanner from './components/CompletedBanner'
 
 const styles = {
   page: {
+    width: '100vw',
     paddingBottom: '5rem',
   },
   header: {