Skip to content

Commit 14be12a

Browse files
committed
Fix styling for source URL display in NewsSingle component
Signed-off-by: Lee Calcote <lee.calcote@layer5.io>
1 parent 2ecf986 commit 14be12a

File tree

1 file changed

+2
-2
lines changed
  • src/sections/Company/News-single

1 file changed

+2
-2
lines changed

src/sections/Company/News-single/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const NewsSingle = ({ data, children }) => {
8686
</Row>
8787
</div>
8888
{frontmatter.source_url ? (
89-
<div style={{ display: "flex", textDecoration: "italic" }}>
89+
<div style={{ display: "flex", fontStyle: "italic" }}>
9090
<h5>
9191
Originally published on{" "}
9292
<a
@@ -100,7 +100,7 @@ const NewsSingle = ({ data, children }) => {
100100
</div>
101101
) : (
102102
frontmatter.eurl && (
103-
<div style={{ display: "flex", textDecoration: "italic" }}>
103+
<div style={{ display: "flex", fontStyle: "italic" }}>
104104
<h5>
105105
Read the full article on{" "}
106106
<a

0 commit comments

Comments
 (0)