build warnings
Browse files
src/lib/components/Piclets/PicletDetail.svelte
CHANGED
@@ -658,17 +658,6 @@
|
|
658 |
transform: scale(0.95);
|
659 |
}
|
660 |
|
661 |
-
.btn-primary {
|
662 |
-
background: #007bff;
|
663 |
-
color: white;
|
664 |
-
width: 100%;
|
665 |
-
}
|
666 |
-
|
667 |
-
.btn-primary:disabled {
|
668 |
-
opacity: 0.7;
|
669 |
-
cursor: not-allowed;
|
670 |
-
}
|
671 |
-
|
672 |
.btn-danger {
|
673 |
background: #ff3b30;
|
674 |
color: white;
|
|
|
658 |
transform: scale(0.95);
|
659 |
}
|
660 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
661 |
.btn-danger {
|
662 |
background: #ff3b30;
|
663 |
color: white;
|
src/lib/components/UI/PullToRefresh.svelte
CHANGED
@@ -135,9 +135,9 @@
|
|
135 |
bind:this={container}
|
136 |
class="content-container"
|
137 |
class:pulling
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
style="transform: translateY({refreshing ? threshold : pullDistance}px)"
|
142 |
>
|
143 |
{@render children?.()}
|
|
|
135 |
bind:this={container}
|
136 |
class="content-container"
|
137 |
class:pulling
|
138 |
+
ontouchstart={handleTouchStart}
|
139 |
+
ontouchmove={handleTouchMove}
|
140 |
+
ontouchend={handleTouchEnd}
|
141 |
style="transform: translateY({refreshing ? threshold : pullDistance}px)"
|
142 |
>
|
143 |
{@render children?.()}
|