Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
4 changes: 0 additions & 4 deletions frontend/src/assets/images/icons/share_filled_icon.svg

This file was deleted.

5 changes: 3 additions & 2 deletions frontend/src/assets/images/icons/share_icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,17 @@ export const ApplyButton = styled.button`
border-radius: 10px;
cursor: pointer;
transition: transform 0.2s ease-in-out;
background-color: #3a3a3a;
background-color: #ff7543;

padding: 10px 40px;
width: 517px;
height: 44px;
font-size: 16px;
height: 50px;
font-size: 20px;
font-style: normal;
font-weight: 500;
font-weight: 700;
color: #fff;
text-align: center;

&:hover {
background-color: #555;
transform: scale(1.03);
}

img {
font-size: 12px;
font-weight: 600;
Expand All @@ -42,3 +37,10 @@ export const ApplyButton = styled.button`
width: 280px;
}
`;

export const Separator = styled.span`
margin: 0 8px;
border-left: 1px solid #787878;
height: 12px;
display: inline-block;
`;
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const ClubApplyButton = ({ deadlineText }: ClubApplyButtonProps) => {
지원하기
{deadlineText && deadlineText !== RECRUITMENT_STATUS.ALWAYS && (
<>
<span style={{ margin: '0 8px', color: '#787878' }}>|</span>
<Styled.Separator />
{deadlineText}
</>
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export const ClubDetailFooterContainer = styled.div`
position: sticky;
bottom: 0;
width: 100%;
height: 65px;
z-index: 100;
padding: 10px 40px;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,8 @@ export const ShareButtonContainer = styled.div`
justify-content: flex-end;
cursor: pointer;
`;

export const ShareButtonIcon = styled.img`
width: 50px;
height: 50px;
`;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as Styled from './ShareButton.styles';
import { useGetClubDetail } from '@/hooks/queries/club/useGetClubDetail';
import useMixpanelTrack from '@/hooks/useMixpanelTrack';
import ShareIcon from '@/assets/images/icons/share_filled_icon.svg';
import ShareIcon from '@/assets/images/icons/share_icon.svg';
import { EVENT_NAME } from '@/constants/eventName';

interface ShareButtonProps {
Expand Down Expand Up @@ -54,7 +54,7 @@ const ShareButton = ({ clubId }: ShareButtonProps) => {
role='button'
aria-label='카카오톡으로 동아리 정보 공유하기'
>
<img src={ShareIcon} alt='카카오톡 공유' />
<Styled.ShareButtonIcon src={ShareIcon} alt='카카오톡 공유' />
</Styled.ShareButtonContainer>
);
};
Expand Down