Skip to content

Commit b19edd8

Browse files
FIX: Clock position when no scroll
Fix the position of the clock when not enough elements are displayed to have the page scrollable.
1 parent 02178ca commit b19edd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/code/js/load.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ function endLoad(){
2727
let inputs = document.getElementById('input-container').children;
2828
let clock = document.getElementsByClassName('clock-element');
2929

30-
clock[0].style.marginTop = (100 - (inputs.length * 18) - 3) + 'vh';
31-
30+
clock[0].style.position = 'fixed';
31+
clock[0].style.bottom = '1vh';
3232
console.log('end load');
3333

3434
}

0 commit comments

Comments
 (0)