We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e16cb5c commit 277e900Copy full SHA for 277e900
1 file changed
src/routes/+page.svelte
@@ -231,7 +231,7 @@
231
}
232
233
function cyclePreset(direction: 1 | -1) {
234
- presetIndex = ((presetIndex + direction) % presets.length + presets.length) % presets.length;
+ presetIndex = (((presetIndex + direction) % presets.length) + presets.length) % presets.length;
235
applyPreset(presetIndex);
236
237
@@ -926,12 +926,12 @@
926
927
928
.home :global(.total-time-display .play-btn) {
929
- width: clamp(88px, 11vw, 176px);
+ width: clamp(105px, 14vw, 215px);
930
931
932
.home :global(.total-time-display .time) {
933
flex: none;
934
- font-size: clamp(7.7rem, 13.2vw, 22rem);
+ font-size: clamp(10rem, 16vw, 30rem);
935
text-align: center;
936
937
0 commit comments