Skip to content

Commit

Permalink
style(frontend): change button background colors
Browse files Browse the repository at this point in the history
  • Loading branch information
codingben committed Sep 20, 2024
1 parent e85c127 commit e61a706
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
6 changes: 5 additions & 1 deletion src/frontend/src/components/App/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,11 @@ function Footer() {
<div className="footer">
<h4>
Made with <span style={{ color: "#E91E63" }}>&#x2764;</span> by{" "}
<a href="https://codingben.io" target="_blank">
<a
href="https://codingben.io"
target="_blank"
style={{ textDecoration: "none" }}
>
Ben Oukhanov
</a>
</h4>
Expand Down
14 changes: 8 additions & 6 deletions src/frontend/src/components/App/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}

.fullscreen-button {
background-color: white;
background-color: transparent;
background-repeat: no-repeat;
border: none;
cursor: pointer;
Expand All @@ -27,12 +27,13 @@
margin: 26px 115px;
font-size: 23px;
font-family: Arial;
color: black;
font-weight: bold;
color: white;
border-radius: 12px;
}

.fullscreen-button:hover {
color: darkgrey;
color: #D3D3D3;
}

/* .login-button {
Expand All @@ -56,7 +57,7 @@
} */

.github-button {
background-color: white;
background-color: transparent;
background-repeat: no-repeat;
border: none;
cursor: pointer;
Expand All @@ -68,12 +69,13 @@
margin: 26px 20px;
font-size: 23px;
font-family: Arial;
color: black;
font-weight: bold;
color: white;
border-radius: 12px;
}

.github-button:hover {
color: darkgrey;
color: #D3D3D3;
}

/* Loader */
Expand Down

0 comments on commit e61a706

Please sign in to comment.