Update secant/UIComponents/CircularFrame/CircularFrameBadge.swift

agreed

Co-authored-by: dh-ecc <90868897+dh-ecc@users.noreply.github.com>
This commit is contained in:
Lukas Korba 2022-02-23 18:57:08 +01:00 committed by GitHub
parent ae2521d408
commit 9323e32f6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -120,7 +120,12 @@ struct BadgeOverlay: Animatable, ViewModifier {
)
.transition(.scale(scale: 2))
.transition(.opacity)
.shadow(color: Asset.Colors.Onboarding.badgeShadow.color, radius: 10, x: 0, y: 0)
.shadow(
color: Asset.Colors.Onboarding.badgeShadow.color,
radius: 10,
x: 0,
y: 0
)
Spacer()
}
}