From 5d0e4366d25bd169eec618aae37ca6c078633ffc Mon Sep 17 00:00:00 2001 From: June Date: Sun, 3 Nov 2024 09:30:59 +0000 Subject: [PATCH] set right margin to 0 on svgs inside a square notification button (#2871) Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com> --- apps/frontend/src/components/ui/NotificationItem.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/frontend/src/components/ui/NotificationItem.vue b/apps/frontend/src/components/ui/NotificationItem.vue index 1d2132953..1f01cda87 100644 --- a/apps/frontend/src/components/ui/NotificationItem.vue +++ b/apps/frontend/src/components/ui/NotificationItem.vue @@ -571,6 +571,10 @@ function getMessages() { gap: var(--spacing-card-sm); } + .notification__actions .iconified-button.square-button svg { + margin-right: 0; + } + .unknown-type { color: var(--color-red); }