diff --git a/src/App.js b/src/App.js index 1802080..d40ea5e 100644 --- a/src/App.js +++ b/src/App.js @@ -18,10 +18,9 @@ const GloablStyle = createGlobalStyle` `; const Container = styled.div` - width: 100vw; + width: 95vw; display: inline-block; text-align: left; - margin-left: 10px; margin-top: 10px; `; @@ -40,7 +39,7 @@ const App = () => { <> - {location.pathname !== process.env.REACT_APP_BASENAME && ( + {location.pathname !== "/" && ( 🔙 diff --git a/src/components/counter.jsx b/src/components/counter.jsx index 648cbae..9d1df5f 100644 --- a/src/components/counter.jsx +++ b/src/components/counter.jsx @@ -10,7 +10,7 @@ const CountContainer = styled.div` flex-direction: column; justify-content: space-around; align-items: center; - height: 100vh; + height: 90vh; text-shadow: 0 2px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); `;