Skip to content

Commit

Permalink
made settings icon less visible
Browse files Browse the repository at this point in the history
  • Loading branch information
epicX67 committed Jul 14, 2021
1 parent bb75dff commit eff79da
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
14 changes: 8 additions & 6 deletions src/css/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/css/style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions src/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -267,22 +267,24 @@ header {
.openSettings {
position: absolute;
bottom: 0;
left: -8rem;
left: -5.1rem;
margin: 1rem;
padding: 1rem;
font-size: 2rem;
font-size: 1.5rem;
z-index: 99;
background: none;
border: none;
color: var(--txt);
cursor: pointer;
transition: transform 400ms ease;
transition: transform 400ms ease, opacity 400ms;
opacity: 0.3;

i {
transition: color 400ms;
}

&:hover {
opacity: 1;
transform: scale(1.2) rotate(180deg);
i {
color: var(--blue);
Expand Down

0 comments on commit eff79da

Please sign in to comment.