Skip to content

Commit

Permalink
Merge pull request #550 from sopt-makers/develop
Browse files Browse the repository at this point in the history
프로덕션 배포
  • Loading branch information
eunsukimme authored Oct 2, 2023
2 parents d5bb6ed + 091b781 commit 1ef6a76
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/components/modal/ImageCarouselModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const ModalWrapper = styled(Box, {
zIndex: '$2',
backgroundColor: '#181818',
width: '100%',
height: '100vh',
height: '100%',
});
const Container = styled('div', {
position: 'relative',
Expand Down Expand Up @@ -109,7 +109,7 @@ const CarouselContainer = styled('div', {
const CarouselScrollContainer = styled('div', {
display: 'flex',
maxWidth: '1280px',
height: '100vh',
height: '100%',
maxHeight: '600px',
});
const CarouselItem = styled('div', {
Expand Down
13 changes: 8 additions & 5 deletions src/components/page/meetingManagement/ManagementListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ const SWhiteButton = styled(SRoundButton, {
color: '$black100',
});

const SCardButton = styled('button', {
const buttonStyles = {
width: '50%',
padding: '$13 0',
textAlign: 'center',
Expand All @@ -502,19 +502,22 @@ const SCardButton = styled('button', {
},
},
},
});
} as const;

const SRejectButton = styled(SCardButton, {
const SRejectButton = styled('button', {
...buttonStyles,
borderBottomRightRadius: '0',
});

const SApproveButton = styled(SCardButton, {
const SApproveButton = styled('button', {
...buttonStyles,
color: '$black100',
backgroundColor: '$white100',
borderBottomLeftRadius: '0',
});

const SCancelButton = styled(SCardButton, {
const SCancelButton = styled('button', {
...buttonStyles,
width: '100%',
});

Expand Down

0 comments on commit 1ef6a76

Please sign in to comment.