Skip to content

Commit

Permalink
Merge pull request #187 from LikeLion-at-DGU/dev
Browse files Browse the repository at this point in the history
🚀 Deploy
  • Loading branch information
Chaem03 authored Aug 3, 2024
2 parents 60b0ad1 + d442b2c commit ba767df
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 5 deletions.
4 changes: 3 additions & 1 deletion src/pages/StarPage/ClearStarP.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ const ClearStarP = ({ onBack }) => {
<img src={shareIcon} />
</button>
</S.shareBtn>
<button onClick={onBack}>뒤로가기</button>
<button className="backBtn" onClick={onBack}>
뒤로가기
</button>
</S.shareContainr>
</S.ClearCantainr>
</S.Wrapper>
Expand Down
30 changes: 26 additions & 4 deletions src/pages/StarPage/styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ export const RoutineBoxContainer = styled.div`
export const ClearCantainr = styled.div`
margin-top: 2rem;
display: flex;
height: 100%;
flex-direction: column;
margin-bottom: 10rem;
Expand Down Expand Up @@ -106,11 +104,20 @@ export const shareBtn = styled.div`
border: 1.228px solid #c4d9e2;
background: rgba(196, 217, 226, 0.5);
& > button {
.ImgSave {
display: flex;
width: 160px;
height: 32px;
padding: 6px;
justify-content: center;
align-items: center;
gap: 10px;
flex-shrink: 0;
text-align: center;
color: white;
border-radius: 15px;
background-color: #78a1b5;
border: 1px solid #c4d9e2;
background: rgba(196, 217, 226, 0.5);
}
`;
export const shareContainr = styled.div`
Expand All @@ -119,4 +126,19 @@ export const shareContainr = styled.div`
justify-content: center;
align-items: center;
gap: 1rem;
.backBtn {
display: flex;
width: 160px;
height: 32px;
padding: 6px;
justify-content: center;
align-items: center;
gap: 10px;
flex-shrink: 0;
text-align: center;
color: white;
border-radius: 15px;
border: 1px solid #c4d9e2;
background: rgba(196, 217, 226, 0.5);
}
`;

0 comments on commit ba767df

Please sign in to comment.