Replies: 4 comments 2 replies
-
Removing |
Beta Was this translation helpful? Give feedback.
-
I couldn't see the issue in Safari. |
Beta Was this translation helpful? Give feedback.
-
@saadeghi I have cut it down to smallest component possible <template>
<ul class="grid gap-4 md:grid-cols-[repeat(auto-fill,minmax(480px,1fr))]">
<li>
<div class="card-body grid auto-cols-auto grid-flow-col justify-between gap-4">
<div class="radial-progress" :style="`--value:${random};`" role="progressbar"></div>
</div>
</li>
</ul>
</template>
<script setup lang="ts">
const random = ref(0);
useIntervalFn(
() => {
random.value = Math.floor(Math.random() * 10 + 30);
},
1000,
{ immediate: true },
);
</script>
And it is still happening. I was hoping to test with Playground, but I can't figure out how to run javascript. broken.mp4 |
Beta Was this translation helpful? Give feedback.
-
Thanks for the link. I see somehow the issue is font-size, after disabling the font-size classes and the font size rule of |
Beta Was this translation helpful? Give feedback.
-
Hello,
While updating to v5, I noticed one of my components is not behaving correctly:
In Chrome
However, in Safari when
--value
changes, I noticed it jumps for a second:Area.mp4
I tried reproducing this in Playground, but was not successful.
I am guessing radial progress has some kind of animation now? I am not sure how to go about debugging this.
Any suggestions?
Beta Was this translation helpful? Give feedback.
All reactions