Skip to content

Commit

Permalink
text links visual improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
Raynesz committed Jan 23, 2021
1 parent 20ddee0 commit ef6d03d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "erdmaker",
"version": "2.2.7",
"version": "2.2.8",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.0",
Expand Down
7 changes: 4 additions & 3 deletions src/components/routes/About.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const About = () => {
<p className="about-text">
If you face any issue, would like to submit a bug report or provide feedback you can do so in the Issues
section of the{" "}
<a href="https://github.com/Raynesz/erdMaker" target="_blank" rel="noopener noreferrer">
<a className="text-link" href="https://github.com/Raynesz/erdMaker" target="_blank" rel="noopener noreferrer">
Github page
</a>
.
Expand All @@ -27,6 +27,7 @@ const About = () => {
</p>
<h3>Credits</h3>
<a
className="text-link"
href="https://www.freepik.com/free-photos-vectors/technology"
title="Background Image"
target="_blank"
Expand All @@ -36,11 +37,11 @@ const About = () => {
</a>
<div>
Icons made by{" "}
<a href="https://www.flaticon.com/authors/freepik" title="Freepik" target="_blank" rel="noopener noreferrer">
<a className="text-link" href="https://www.flaticon.com/authors/freepik" title="Freepik" target="_blank" rel="noopener noreferrer">
Freepik
</a>{" "}
from{" "}
<a href="https://www.flaticon.com/" title="Flaticon" target="_blank" rel="noopener noreferrer">
<a className="text-link" href="https://www.flaticon.com/" title="Flaticon" target="_blank" rel="noopener noreferrer">
www.flaticon.com
</a>
</div>
Expand Down
9 changes: 9 additions & 0 deletions src/components/routes/routes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,15 @@
}
}

.text-link {
color:#1faacd;
font-weight: bold;
text-decoration: none;
&:hover {
color:#166b92;
}
}

@media screen and (max-width: 768px) {
.home-wrapper {
display: block;
Expand Down

0 comments on commit ef6d03d

Please sign in to comment.