Skip to content

Commit 50b331b

Browse files
committed
Reduce spacing for buttons
1 parent 92737c7 commit 50b331b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SupportCompanion/Views/TrayMenu.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,9 +160,9 @@ struct ButtonSection: View {
160160

161161
let buttonRows = Array(visibleButtons.chunked(into: 3))
162162
// Layout
163-
VStack(alignment: .leading, spacing: 10) {
163+
VStack(alignment: .leading, spacing: 5) {
164164
ForEach(buttonRows.indices, id: \.self) { rowIndex in
165-
HStack(spacing: 10) {
165+
HStack(spacing: 5) {
166166
ForEach(buttonRows[rowIndex], id: \.self) { button in
167167
button
168168
}

0 commit comments

Comments
 (0)