Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
[FE] design: reset.css 에 a:link, a:visit 컬러 스타일 추가 (#566)
Browse files Browse the repository at this point in the history
design: reset 스타일 a 태그 리셋 스타일 추가
  • Loading branch information
jeonjeunghoon authored Oct 10, 2023
1 parent ea9533f commit 331c86f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 0 additions & 4 deletions frontend/src/components/GoToPageLink/GoToPageLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,5 @@ const S = {
&:hover {
background-color: ${({ theme }) => theme.color.gray3};
}
&:visited {
color: ${({ theme }) => theme.color.gray13};
}
`,
};
8 changes: 8 additions & 0 deletions frontend/src/styles/reset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ export const reset = css`
a {
text-decoration: none;
&:link {
color: #000000;
}
&:visited {
color: #000000;
}
}
button {
Expand Down

0 comments on commit 331c86f

Please sign in to comment.