Skip to content

Commit 8eba5bc

Browse files
authored
Merge pull request #1479 from bbc/upstream/fix-rundownlist-underline-on-links
Fix: Underscore on all links after conversion to Bootstrap
2 parents 0e27000 + f7b522e commit 8eba5bc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

packages/webui/src/client/styles/main.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,12 @@ body {
125125
letter-spacing: 0.5px;
126126
}
127127

128+
// By default an a-tag has underlined text - and Link components are rendered as a-tags
129+
// So the default behaviour set to none, and then we can override it in the components that need it:
130+
a {
131+
text-decoration: none;
132+
}
133+
128134
:fullscreen ::-webkit-scrollbar {
129135
background: #252627;
130136
}

0 commit comments

Comments
 (0)