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

Commit 331c86f

Browse files
[FE] design: reset.css 에 a:link, a:visit 컬러 스타일 추가 (#566)
design: reset 스타일 a 태그 리셋 스타일 추가
1 parent ea9533f commit 331c86f

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

frontend/src/components/GoToPageLink/GoToPageLink.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,5 @@ const S = {
3434
&:hover {
3535
background-color: ${({ theme }) => theme.color.gray3};
3636
}
37-
38-
&:visited {
39-
color: ${({ theme }) => theme.color.gray13};
40-
}
4137
`,
4238
};

frontend/src/styles/reset.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@ export const reset = css`
2121
2222
a {
2323
text-decoration: none;
24+
25+
&:link {
26+
color: #000000;
27+
}
28+
29+
&:visited {
30+
color: #000000;
31+
}
2432
}
2533
2634
button {

0 commit comments

Comments
 (0)