Skip to content

Commit

Permalink
fix(VSnackbar): support custom transitions
Browse files Browse the repository at this point in the history
fixes #15474
  • Loading branch information
johnleider committed Apr 20, 2024
1 parent f0f0fa0 commit 5150c98
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/vuetify/src/components/VSnackbar/VSnackbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,10 @@ export const VSnackbar = genericComponent<VSnackbarSlots>()({
positionClasses.value,
props.class,
]}
style={ props.style }
style={[
locationStyles.value,
props.style,
]}
{ ...overlayProps }
v-model={ isActive.value }
contentProps={ mergeProps({
Expand All @@ -176,7 +179,6 @@ export const VSnackbar = genericComponent<VSnackbarSlots>()({
variantClasses.value,
],
style: [
locationStyles.value,
colorStyles.value,
],
onPointerenter,
Expand Down

0 comments on commit 5150c98

Please sign in to comment.