Skip to content

Commit c2c7354

Browse files
authored
Merge pull request #38502 from github/repo-sync
Repo sync
2 parents c1cc9d6 + 7bc4309 commit c2c7354

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

src/events/components/Survey.module.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,9 @@
88
outline-offset: -2px;
99
box-shadow: 0 0 0 3px inset;
1010
}
11+
12+
.underlineLinks {
13+
a {
14+
text-decoration: underline;
15+
}
16+
}

src/events/components/Survey.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export const Survey = () => {
104104

105105
return (
106106
<form
107-
className="f5"
107+
className={cx(styles.underlineLinks, 'f5')}
108108
onSubmit={submit}
109109
ref={formRef}
110110
data-testid="survey-form"
@@ -242,7 +242,7 @@ export const Survey = () => {
242242
)}
243243

244244
<Link
245-
className="f6 text-underline"
245+
className="f6"
246246
href={`/${locale}/site-policy/privacy-policies/github-privacy-statement`}
247247
target="_blank"
248248
>

0 commit comments

Comments
 (0)