Skip to content

Commit c338e5e

Browse files
committed
Repair changing box sizes during visual signals
1 parent a8b399f commit c338e5e

File tree

4 files changed

+5
-10
lines changed

4 files changed

+5
-10
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "myapp",
3-
"version": "1.2.0",
2+
"name": "LP Timer",
3+
"version": "1.2.1",
44
"private": true,
55
"homepage": "https://kroljs.com/LP-Timer",
66
"dependencies": {

src/components/utilities/Footer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Link } from 'react-router-dom';
55
function Footer() {
66
return (
77
<footer>
8-
<p>LP Timer PWA v1.2.0 - Copyright 2020 <a href="https://kroljs.com" target="_blank" rel="noopener noreferrer">Jacob Krol</a> - <Link to="/about">Learn More</Link></p>
8+
<p>LP Timer PWA v1.2.1 - Copyright 2020 <a href="https://kroljs.com" target="_blank" rel="noopener noreferrer">Jacob Krol</a> - <Link to="/about">Learn More</Link></p>
99
</footer>
1010
)
1111
}

src/components/utilities/Timer.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@ import {
33
FaPlay,
44
FaPause,
55
FaStop,
6-
FaVolumeMute,
7-
FaHourglassEnd,
8-
FaHourglassHalf,
9-
FaHourglassStart
6+
FaVolumeMute
107
} from 'react-icons/fa';
118
import '../../styles/Timer.css';
129
import Verbal30 from '../../audio/30-seconds-verbal.wav';

src/styles/Timer.css

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363

6464
/* ADD TIMER ANIMATION */
6565
#timer-anim-box {
66+
position: absolute;
6667
margin: 10px;
6768
height: 20px;
6869
width: 20px;
@@ -87,9 +88,6 @@
8788
width: 0%;
8889
}
8990
}
90-
#timer-text {
91-
margin-top: -40px;
92-
}
9391

9492
/* DEFINE FONT FACES */
9593
#timer-display-min, #timer-display-sec, #timer-display-ms {

0 commit comments

Comments
 (0)