diff --git a/source/src/App.tsx b/source/src/App.tsx index de98e46..d26ceab 100644 --- a/source/src/App.tsx +++ b/source/src/App.tsx @@ -27,10 +27,20 @@ const IENotSupported = styled.p` font-family: ${theming.font.regular}; ` -const StyledContentContainer = styled.div` - flex: 1 1 auto; +const StyledScrollableArea = styled.div` + height: calc(100vh - 4rem); + + display: flex; + flex-direction: column; + justify-content: space-between; + + overflow-y: scroll; + overflow-x: hidden; +` + +const StyedContentContainer = styled.div` + margin-top: 3rem; margin-bottom: 3rem; - margin-top: 5rem; ` const App = () => { @@ -81,27 +91,28 @@ const App = () => { - - - {isLoading ? ( - - ) : ( - - } - /> - } /> - } /> - } /> - } /> - - )} - -