Skip to content

Commit

Permalink
fix underline text style
Browse files Browse the repository at this point in the history
  • Loading branch information
DinamickaDevelopment committed Sep 12, 2022
1 parent 8d96329 commit 97dba8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/SampleCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export default function SampleCard({ sample, updateTags }) {
<Card key={sample.id} className={classes.root}>
<Box className={classes.actionArea}>
<a
style={{ height: '100%', width: '100%' }}
style={{ height: '100%', width: '100%', textDecoration: 'none!important' }}
href={`/project/${(sample.id || '').substr(8)}`}>
<CardContent
style={{
Expand Down
2 changes: 1 addition & 1 deletion src/components/Top4SampleCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export default function Top4SampleCard({ sample, updateTags }) {
<Card key={sample.id + 'Top4'} className={classes.root}>
<Box className={classes.actionArea}>
<a
style={{ height: '100%', width: '100%' }}
style={{ height: '100%', width: '100%', textDecoration: 'none!important' }}
href={`/project/${(sample.id || '').substr(8)}`}>
<CardContent
style={{
Expand Down

0 comments on commit 97dba8b

Please sign in to comment.