Update nuxt-loading-indicator.ts

Opacity controlling is unnecessary here to avoid hydration issue.
This commit is contained in:
Haradhan Sharma 2024-10-29 16:23:29 +06:00 committed by GitHub
parent cf39600d52
commit ca6cbd1ad6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,7 +50,7 @@ export default defineComponent({
pointerEvents: 'none',
width: 'auto',
height: `${props.height}px`,
opacity: isLoading.value ? 1 : 0,
opacity: 1,
background: error.value ? props.errorColor : props.color || undefined,
backgroundSize: `${(100 / progress.value) * 100}% auto`,
transform: `scaleX(${progress.value}%)`,