Skip to content

Commit

Permalink
feat(Notification): allow ring customization with {color} (#1830)
Browse files Browse the repository at this point in the history
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
  • Loading branch information
networdai and benjamincanac committed Jun 3, 2024
1 parent d66cfa9 commit 3ebff4d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/runtime/components/overlays/Notification.vue
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ export default defineComponent({
ui.value.wrapper,
ui.value.background?.replaceAll('{color}', props.color),
ui.value.rounded,
ui.value.shadow
ui.value.shadow,
ui.value.ring?.replaceAll('{color}', props.color)
), props.class)
})
Expand Down

0 comments on commit 3ebff4d

Please sign in to comment.