Skip to content

Commit f7b522e

Browse files
committed
fix: react uses a-tag for Link, and that has underline as default
1 parent 0923906 commit f7b522e

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)