Skip to content
This repository has been archived by the owner on Apr 25, 2022. It is now read-only.

Commit

Permalink
changed css
Browse files Browse the repository at this point in the history
  • Loading branch information
LaraKiyicioglu committed Nov 19, 2021
1 parent ba94512 commit 38c18f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ui/pages/WelcomePage/WelcomePage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function RenderElement(props) {
case 'h5':
return <h5 dangerouslySetInnerHTML={{__html: elem.content}}/>
case 'link':
return <a className={s.link} href={elem.href}>{elem.name}</a>
return <><a className={s.link} href={elem.href}>{elem.name}</a><br/></>
case 'img':
return <img src={elem.src}/>
}
Expand Down
6 changes: 4 additions & 2 deletions src/ui/pages/WelcomePage/WelcomePage.module.scss
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
@import "Styles/colors";

.link {
color: #0771D0;
text-decoration: none;
font-weight: bold;
}

link:hover {
cursor: pointer;
}

link:link {
color: $color_marine_600;
color: #0771D0;
}

link:visited {
color: $color_marine_600;
color: #0771D0;
}

0 comments on commit 38c18f6

Please sign in to comment.