Skip to content

Commit 0252234

Browse files
committed
important style links
1 parent 0ac3e5f commit 0252234

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/shared/components/Looker/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ export default class Looker extends Component {
169169
return value ? (
170170
<td key={record[prop]} style={fixStyle(styles)} title={value} styleName="body-row">
171171
{memberLinks ? (
172-
<a styleName="handle-link" href={`${window.origin}/members/${value}`} target={`${_.includes(window.origin, 'www') ? '_self' : '_blank'}`} style={{ color: ratingProp ? `${getRatingColor(record[ratingProp])} !important` : null }}>
172+
<a styleName="handle-link" href={`${window.origin}/members/${value}`} target={`${_.includes(window.origin, 'www') ? '_self' : '_blank'}`} style={{ color: ratingProp ? getRatingColor(record[ratingProp]) : null }}>
173173
{value}
174174
</a>
175175
) : value}

src/shared/components/Looker/style.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ $light-gray: #d4d4d4;
106106
@include roboto-medium;
107107

108108
font-weight: 500;
109-
color: #0d61bf !important;
109+
color: #0d61bf;
110110
text-decoration: underline;
111111

112112
&:hover {

0 commit comments

Comments
 (0)