Skip to content

Commit

Permalink
Merge pull request #9 from asherhe/dev
Browse files Browse the repository at this point in the history
merge changes from dev
  • Loading branch information
asherhe authored Nov 5, 2023
2 parents 7c8a2c9 + 9ceba5a commit 5fe2983
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
10 changes: 1 addition & 9 deletions src/components/app.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,21 +136,13 @@ function App(props) {
setType={(type) => {
let newType = new TimerType(type);
setTimerStart(undefined);
setElapsed(0);
setTimerType(newType);
setDuration(newType.duration());
}}
active={!playing}
/>
</div>
<footer>
<div>Copyright © 2023 asherhe</div>
<a href="https://github.com/asherhe/timeato" title="GitHub repository">
<FontAwesomeIcon icon={faGithub} />
</a>
<a href="https://github.com/asherhe/timeato/issues/new/choose" title="Report a bug">
<FontAwesomeIcon icon={faBug} />
</a>
</footer>
</div>
);
}
Expand Down
5 changes: 3 additions & 2 deletions src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,10 @@ footer {

& > a {
color: #fff;
transition: 0.5s ease color;
opacity: 1;
transition: 0.5s ease opacity;
&:hover {
color: #f5b6b3;
opacity: 0.5;
}
}
}

0 comments on commit 5fe2983

Please sign in to comment.