Skip to content

Commit a9c7d5b

Browse files
committed
Added underline to paragraph-level links, and subsequently had to remove underline from heading-level links
1 parent a409f9a commit a9c7d5b

File tree

13 files changed

+16
-3
lines changed

13 files changed

+16
-3
lines changed

Diff for: src/components/base-styles/base/links/_links.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
a,
1616
%link {
1717
color: color(link);
18-
text-decoration: none;
18+
// text-decoration: none;
1919
transition: .2s cubic-bezier(.190, 1.000, .220, 1.000); /* easeOutExpo */
2020
}
2121

Diff for: src/components/components/club-teaser-list/club-teaser.scss

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
.club-teaser {
77
color: color('text');
88
display: flex;
9+
text-decoration: none;
910

1011
&__inner {
1112
@include padding-top(20px);

Diff for: src/components/components/communication-channels/communication-channels.scss

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
.communication-channels {
88
text-align: center;
99
margin-bottom: 5px;
10+
text-decoration: none;
1011

1112
&__image {
1213
max-width: 100%;

Diff for: src/components/components/external-link-box/external-link-box.scss

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
flex-direction: column;
1414
max-width: 160px;
1515
min-height: 120px;
16+
text-decoration: none;
1617

1718
@include breakpoint($tablet) {
1819
max-width: 100%;

Diff for: src/components/components/footer/footer.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
a {
1313
color: color('white');
14-
14+
text-decoration: none;
1515
&:hover,
1616
&:focus {
1717
color: color('white');

Diff for: src/components/components/join-cta/join-cta.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
display: flex;
1111
width: 100%;
1212
max-width: 350px;
13+
text-decoration: none;
1314
@include margin-top(1);
1415

1516
@include breakpoint($desktop) {
@@ -131,4 +132,4 @@
131132
}
132133
}
133134
}
134-
}
135+
}

Diff for: src/components/components/member-teaser/member-teaser.scss

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
display: flex;
1010
width: 100%;
1111
height: 100%;
12+
text-decoration: none;
1213

1314
&__inner {
1415
display: flex;

Diff for: src/components/components/member-training-resources/member-training-resources.scss

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
padding: 0;
2828
display: flex;
2929
height: 100%;
30+
text-decoration: none;
3031
}
3132

3233
&__image-wrapper {

Diff for: src/components/components/member/member.scss

+3
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@
9191
word-break: break-all;
9292
margin-left: auto;
9393
margin-right: auto;
94+
a {
95+
text-decoration: none;
96+
}
9497
}
9598

9699
&__link-content {

Diff for: src/components/components/organization/organization.scss

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
// Used for organization page listing.
66
.organization {
77
display: flex;
8+
text-decoration: none;
89

910
&__inner {
1011
padding: 5px;

Diff for: src/components/components/teaser-box/teaser-box.scss

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
&__wrapper-link {
3636
width: 100%;
3737
display: flex;
38+
text-decoration: none;
3839
}
3940

4041
&__link-inner {

Diff for: src/components/navigation/main-navigation/main-navigation.scss

+1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@
104104
display: inline-block;
105105
padding-top: 0;
106106
padding-bottom: 0;
107+
text-decoration: none;
107108
}
108109
}
109110
}

Diff for: src/components/navigation/secondary-navigation/secondary-navigation.scss

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
@include font-size(18px);
1616
@include line-height(27px);
1717
color: color('navigation');
18+
text-decoration: none;
1819
transition: .3s cubic-bezier(0.19, 1, 0.22, 1);
1920
display: block;
2021
padding-top: 5px;

0 commit comments

Comments
 (0)