Skip to content

Commit d60099b

Browse files
authored
Merge pull request #3560 from Izzy-Snyder/sketch-links
Sketch links
2 parents f955a20 + eb91660 commit d60099b

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

client/modules/About/About.styles.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,11 @@ export const SectionItem = styled.div`
121121
& a {
122122
font-weight: 700;
123123
font-size: ${remSize(16)};
124+
text-decoration: underline;
124125
125126
&:hover {
126127
text-decoration: underline;
128+
text-decoration-thickness: 0.1em;
127129
}
128130
}
129131
@@ -176,6 +178,7 @@ export const ContactHandles = styled.p`
176178
177179
& a {
178180
color: ${prop('logoColor')};
181+
text-decoration: underline;
179182
180183
&:hover {
181184
text-decoration: underline;
@@ -202,9 +205,11 @@ export const Footer = styled.div`
202205
& a {
203206
margin: ${remSize(20)} 9.5% 0 0;
204207
color: ${prop('logoColor')};
208+
text-decoration: underline;
205209
206210
&:hover {
207211
text-decoration: underline;
212+
text-decoration-thickness: 0.1em;
208213
}
209214
}
210215

client/modules/IDE/components/CollectionList/CollectionListRow.jsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ const SketchsTableRow = styled.tr`
3434
3535
a {
3636
color: ${prop('primaryTextColor')};
37+
text-decoration: underline;
38+
39+
&:hover {
40+
text-decoration: underline;
41+
text-decoration-thickness: 0.1em;
42+
}
3743
}
3844
3945
&.is-deleted > * {

client/styles/components/_sketch-list.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,10 @@
148148

149149
.sketches-table__row a {
150150
@include themify() {
151+
text-decoration: underline;
151152
color: getThemifyVariable("primary-text-color");
152153
}
154+
153155
}
154156

155157
.sketches-table__row.is-deleted > * {
@@ -186,4 +188,5 @@
186188
@include themify() {
187189
color: getThemifyVariable("logo-color");
188190
}
191+
text-decoration-thickness: 0.1em;
189192
}

0 commit comments

Comments
 (0)