Skip to content

Commit

Permalink
fix: solve conflict after merging with main
Browse files Browse the repository at this point in the history
  • Loading branch information
JeukHwang committed Nov 22, 2023
1 parent 8a15778 commit ddacbbd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 14 deletions.
2 changes: 1 addition & 1 deletion packages/web/src/components/atoms/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const Button = styled.button<{
&:disabled {
cursor: none;
background-color: ${theme.colors.white};
background-color: ${colors.white};
}
`,
);
Expand Down
9 changes: 8 additions & 1 deletion packages/web/src/components/organisms/CreateAgendaModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,14 @@ export const CreateAgendaModal: React.FC = () => {
style={{ textDecoration: "none" }}
>
<Button w={270} h={38} onClick={onSubmit} disabled={!validated}>
<p css={[text.boldtitle3, validated ? text.blue600 : text.gray300]}>투표 생성하기</p>
<p
css={[
text.boldtitle3,
validated ? text.blue600 : text.gray300,
]}
>
투표 생성하기
</p>
</Button>
</Link>
</Box>
Expand Down
13 changes: 1 addition & 12 deletions packages/web/src/components/organisms/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,7 @@ import { LogoIcon } from "@biseo/web/assets";
import { Box } from "@biseo/web/components/atoms";
import { HeaderItem, Profile } from "@biseo/web/components/molecules";
import { useAuth } from "@biseo/web/services/auth";
import {
align,
bg,
center,
colors,
column,
h,
justify,
round,
text,
w,
} from "@biseo/web/styles";
import { bg, center, colors, h, round, text, w } from "@biseo/web/styles";
import styled from "@emotion/styled";
import React, { useState } from "react";
import { useNavigate } from "react-router-dom";
Expand Down

0 comments on commit ddacbbd

Please sign in to comment.