Skip to content

Commit 0e410f4

Browse files
committed
Fix import, toggling and cursor
1 parent ec3d3e7 commit 0e410f4

3 files changed

Lines changed: 2 additions & 5 deletions

File tree

scripts/controls.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { animationFrame } from './animations.js';
2-
import { elements } from './elements.js';
32

43
let isStarted = false;
54

scripts/modal.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ function setTheTimer(e) {
3333
function toggleModal() {
3434
modal().classList.toggle("closed");
3535
modalOverlay().classList.toggle("closed");
36+
controlCenter();
3637
}
3738

3839
function pickSuggestedTime(e) {

styles/main-content.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010
margin: 0 auto;
1111
}
1212

13-
.time-container:hover {
14-
cursor: pointer;
15-
}
16-
1713
.time-container .time {
1814
display: flex;
1915
justify-content: center;
@@ -22,6 +18,7 @@
2218

2319
.time-container .time:hover {
2420
border-bottom: 0.15rem solid #54546D;
21+
cursor: pointer;
2522
}
2623

2724
.time .m:hover, .s:hover {

0 commit comments

Comments
 (0)