Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
fix: fixed react error that was produced by style file
Browse files Browse the repository at this point in the history
  • Loading branch information
vycdev committed Apr 6, 2020
1 parent a77aaca commit 680dc53
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const StyledPannel1 = styled.div`
position: relative;
background-color: #198cf6;
height: 100vh;
min-height: 1000px;
min-height: 900px;
display: flex;
flex-wrap: wrap;
flex-direction: row;
Expand Down Expand Up @@ -88,14 +88,18 @@ export const Wave = styled.div`
width: 100%;
bottom: -5px;
`;
export const TypeButton = styled.a`
export const TypeButton = styled.div`
background: #fde400;
color: black;
text-decoration: none;
font-size: 18px;
font-weight: bold;
padding: 15px 25px;
position: relative;
width: 150px;
margin: auto;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
-webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
-ms-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
Expand Down

0 comments on commit 680dc53

Please sign in to comment.