Skip to content

Commit

Permalink
ADD - minor changes in styles
Browse files Browse the repository at this point in the history
  • Loading branch information
sebas095 committed Aug 8, 2020
1 parent 3cc8036 commit a596a14
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
`;

Expand All @@ -40,7 +39,7 @@ const App = () => {
<>
<GloablStyle />
<Store>
{location.pathname !== process.env.REACT_APP_BASENAME && (
{location.pathname !== "/" && (
<Container>
<Back to="/"> 🔙 </Back>
</Container>
Expand Down
2 changes: 1 addition & 1 deletion src/components/counter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
`;

Expand Down

0 comments on commit a596a14

Please sign in to comment.