We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9f144a commit 08aba80Copy full SHA for 08aba80
Sources/ComponentsKit/Components/Alert/SUAlert.swift
@@ -72,7 +72,7 @@ extension View {
72
footer: {
73
switch AlertButtonsOrientationCalculator.preferredOrientation(model: model) {
74
case .horizontal:
75
- HStack {
+ HStack(spacing: AlertVM.buttonsSpacing) {
76
AlertButton(
77
isAlertPresented: isPresented,
78
model: model.secondaryButtonVM,
@@ -85,7 +85,7 @@ extension View {
85
)
86
}
87
case .vertical:
88
- VStack {
+ VStack(spacing: AlertVM.buttonsSpacing) {
89
90
91
model: model.primaryButtonVM,
0 commit comments