tweak MkPullToRefresh

This commit is contained in:
syuilo 2025-05-03 16:51:23 +09:00
parent 00008d3763
commit f0544ede87
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ import { isHorizontalSwipeSwiping } from '@/utility/touch.js';
const SCROLL_STOP = 10; const SCROLL_STOP = 10;
const MAX_PULL_DISTANCE = Infinity; const MAX_PULL_DISTANCE = Infinity;
const FIRE_THRESHOLD = 230; const FIRE_THRESHOLD = 200;
const RELEASE_TRANSITION_DURATION = 200; const RELEASE_TRANSITION_DURATION = 200;
const PULL_BRAKE_BASE = 1.5; const PULL_BRAKE_BASE = 1.5;
const PULL_BRAKE_FACTOR = 170; const PULL_BRAKE_FACTOR = 170;
@ -239,7 +239,6 @@ onUnmounted(() => {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
font-size: 14px;
> .icon, > .loader { > .icon, > .loader {
margin: 6px 0; margin: 6px 0;
@ -255,6 +254,7 @@ onUnmounted(() => {
> .text { > .text {
margin: 5px 0; margin: 5px 0;
font-size: 90%;
} }
} }
</style> </style>