Bug:
The timer clock is not receiving its intended styling (font size, weight, letter-spacing).
In style.css, the clock is styled using the #timer selector. However, in the HTML, the actual time element uses id="time", while its container uses class="timer". Because of this mismatch, the styles are not being applied to the text.
Steps to Reproduce
- Open the application.
- Inspect the timer text element.
- Notice that the specific CSS rules for
#timer are not applied to the id="time" element.
Proposed Fix:
Update style.css to change the #timer selector to #time.
Bug:
The timer clock is not receiving its intended styling (font size, weight, letter-spacing).
In
style.css, the clock is styled using the#timerselector. However, in the HTML, the actual time element usesid="time", while its container usesclass="timer". Because of this mismatch, the styles are not being applied to the text.Steps to Reproduce
#timerare not applied to theid="time"element.Proposed Fix:
Update
style.cssto change the#timerselector to#time.