We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c1cc9d6 + 7bc4309 commit c2c7354Copy full SHA for c2c7354
src/events/components/Survey.module.scss
@@ -8,3 +8,9 @@
8
outline-offset: -2px;
9
box-shadow: 0 0 0 3px inset;
10
}
11
+
12
+.underlineLinks {
13
+ a {
14
+ text-decoration: underline;
15
+ }
16
+}
src/events/components/Survey.tsx
@@ -104,7 +104,7 @@ export const Survey = () => {
104
105
return (
106
<form
107
- className="f5"
+ className={cx(styles.underlineLinks, 'f5')}
108
onSubmit={submit}
109
ref={formRef}
110
data-testid="survey-form"
@@ -242,7 +242,7 @@ export const Survey = () => {
242
)}
243
244
<Link
245
- className="f6 text-underline"
+ className="f6"
246
href={`/${locale}/site-policy/privacy-policies/github-privacy-statement`}
247
target="_blank"
248
>
0 commit comments