mirror of
https://github.com/Retropex/bitfeed.git
synced 2025-05-12 19:20:46 +02:00
Fix donation amount slider on touch devices
This commit is contained in:
parent
d386f01586
commit
b13db6f3e5
@ -282,6 +282,12 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (max-height: 760px) {
|
||||||
|
.explore-button {
|
||||||
|
bottom: -1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.block-info.landscape {
|
.block-info.landscape {
|
||||||
bottom: unset;
|
bottom: unset;
|
||||||
left: unset;
|
left: unset;
|
||||||
|
@ -575,7 +575,7 @@
|
|||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{#if $loading}
|
{#if $loading}
|
||||||
<div class="loading-overlay" in:fade={{ delay: 100, duration: 500 }} out:fade={{ duration: 200 }}>
|
<div class="loading-overlay" in:fade={{ delay: 500, duration: 500 }} out:fade={{ duration: 200 }}>
|
||||||
<div class="loading-wrapper">
|
<div class="loading-wrapper">
|
||||||
<LoadingAnimation />
|
<LoadingAnimation />
|
||||||
<p class="loading-msg">loading</p>
|
<p class="loading-msg">loading</p>
|
||||||
|
@ -110,7 +110,7 @@ function cancelDrag (e) {
|
|||||||
</div>
|
</div>
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
<span class="handle" style={handleStyle} on:pointerdown={startDrag}/>
|
<span class="handle" style={handleStyle} on:pointerdown={startDrag} draggable={false}/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -118,6 +118,7 @@ function cancelDrag (e) {
|
|||||||
.satoshi-slider {
|
.satoshi-slider {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
touch-action: none;
|
||||||
|
|
||||||
.track {
|
.track {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
Loading…
Reference in New Issue
Block a user