We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c4fa59 commit bdf8d01Copy full SHA for bdf8d01
src/components/themes/ThemeGenerator.vue
@@ -28,7 +28,13 @@ function resetColors() {
28
29
<template>
30
<div class="mx-auto my-12 max-w-240 flex flex-col gap-4 px-4">
31
- <div class="relative w-full flex flex-nowrap gap-0 overflow-x-auto rounded-md bg-catppuccin-900">
+ <!-- @touch*.stop prevents mobile swipes -->
32
+ <div
33
+ @touchstart.stop
34
+ @touchmove.stop
35
+ @touchend.stop
36
+ class="relative w-full flex flex-nowrap gap-0 overflow-x-auto rounded-md bg-catppuccin-900"
37
+ >
38
<div class="flex shrink-0 flex-col gap-0">
39
<button
40
@click="selected = tab.Key"
0 commit comments