Skip to content

Commit

Permalink
design: 회의 소요 시간 뷰 반응형으로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ljh0608 committed Aug 24, 2024
1 parent 63cbb45 commit 7da75fd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
5 changes: 3 additions & 2 deletions src/components/common/atomComponents/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,15 @@ const buttonCSS = {
halfPrimaryActive: css`
${buttonDefaultCSS.basicCss};
background: ${({ theme }) => theme.colors.main1};
/* width: 15.2rem; width: calc((100%-14px) / 2);*/
width: 100%;
max-width: 18.8rem;
color: ${({ theme }) => theme.colors.white};
`,
halfPrimaryDisabled: css`
${buttonDefaultCSS.basicCss};
background: ${({ theme }) => theme.colors.grey7};
max-width: 18.8rem;
width: 100%;
color: ${({ theme }) => theme.colors.grey4};
`,
primaryDisabled: css`
Expand All @@ -69,7 +70,6 @@ const buttonCSS = {
halfSecondaryActive: css`
${buttonDefaultCSS.basicCss};
background: ${({ theme }) => theme.colors.main5};
/* width: 15.2rem; */
max-width: 18.8rem;
color: ${({ theme }) => theme.colors.grey9};
`,
Expand All @@ -78,6 +78,7 @@ const buttonCSS = {
background: ${({ theme }) => theme.colors.grey7};
color: ${({ theme }) => theme.colors.grey5};
pointer-events: none;
cursor: default;
`,
halfsecondaryDisabled: css`
${buttonDefaultCSS.basicCss};
Expand Down
7 changes: 5 additions & 2 deletions src/pages/createMeeting/components/useFunnel/SetDuration.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,14 @@ const SetAdditionalInfoWrapper = styled.div`
display: flex;
align-items: center;
justify-content: center;
width: 100%;
`;

const DurationWrapper = styled.div`
display: flex;
flex-wrap: wrap;
display: grid;
grid-template-columns: repeat(2, 1fr); /* 3열로 나누기 */
grid-template-rows: repeat(3, 1fr); /* 2행으로 나누기 */
width: 100%;
gap: 1.1rem;
justify-content: center;
Expand Down

0 comments on commit 7da75fd

Please sign in to comment.