Skip to content

Commit

Permalink
Components: Expansible-panel: Fix alert icon ripple effect
Browse files Browse the repository at this point in the history
Signed-off-by: Arturo Manzoli <[email protected]>
  • Loading branch information
ArturoManzoli authored and rafaellehmkuhl committed Oct 2, 2024
1 parent 6765323 commit 251c1eb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/ExpansiblePanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
<v-icon :size="interfaceStore.isOnSmallScreen ? 15 : 18" color="white" icon="mdi-information-outline" />
</v-btn>
</div>
<div v-if="hasWarningSlot" class="flex justify-end items-center w-[10%] relative">
<div v-if="hasWarningSlot" class="flex justify-end items-center w-[10%]">
<v-btn
class="ml-auto w-[10px] rounded-full mr-2"
class="rounded-full relative overflow-hidden"
size="small"
color="transparent"
elevation="0"
Expand Down Expand Up @@ -310,6 +310,7 @@ const hasWarningSlot = computed(() => !!slots.warning?.())
border-radius: 50%;
transform: translate(-50%, -50%) scale(0);
animation: rippleEffect 1.5s infinite;
pointer-events: none;
}
@keyframes rippleEffect {
Expand Down

0 comments on commit 251c1eb

Please sign in to comment.