Skip to content

Commit

Permalink
fix: mds 와의 스타일 충돌 해결 (#1568)
Browse files Browse the repository at this point in the history
  • Loading branch information
seojisoosoo authored Sep 28, 2024
1 parent 582b716 commit f49aa37
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/components/debug/SideBar.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import styled from '@emotion/styled';
import { colors } from '@sopt-makers/colors';
import { forwardRef, ReactNode } from 'react';

import { useEscapeCallback } from '@/hooks/useEscapeCallback';
Expand Down Expand Up @@ -90,7 +91,7 @@ const CloseButton = styled.button`
cursor: pointer;
width: 40px;
height: 40px;
color: white;
color: ${colors.white};
&:hover {
background-color: rgb(200 200 200 / 30%);
Expand Down
2 changes: 1 addition & 1 deletion src/components/projects/upload/form/fields/LinkField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ const StyledEditCompleteButton = styled.button`
background-color: ${colors.gray600};
padding: 16px 36px;
white-space: nowrap;
color: ${colors.gray600};
color: ${colors.gray200};
${textStyles.SUIT_14_M};
Expand Down
3 changes: 2 additions & 1 deletion src/styles/reset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,8 @@ export const reset = css`
[type='reset'],
[type='submit'] {
appearance: button;
color: ${colors.gray10};
/* color: ${colors.gray10}; */
}
/**
Expand Down

0 comments on commit f49aa37

Please sign in to comment.