mirror of
https://github.com/pawelorzech/MacTorn.git
synced 2026-01-29 19:54:27 +00:00
fix: Resolve Credits view height being cut off in MenuBarExtra
- Remove Spacer() that was compressing ScrollView - Set fixed height (480) to ensure all sections are visible
This commit is contained in:
parent
7c4059e59a
commit
f9a2b63ab4
1 changed files with 1 additions and 3 deletions
|
|
@ -63,8 +63,6 @@ struct CreditsView: View {
|
|||
.padding(.horizontal)
|
||||
}
|
||||
|
||||
Spacer()
|
||||
|
||||
// Back Button
|
||||
Button {
|
||||
showCredits = false
|
||||
|
|
@ -79,7 +77,7 @@ struct CreditsView: View {
|
|||
.foregroundColor(.accentColor)
|
||||
}
|
||||
.padding()
|
||||
.frame(width: 320)
|
||||
.frame(width: 320, height: 480)
|
||||
}
|
||||
|
||||
// MARK: - Developer Section
|
||||
|
|
|
|||
Loading…
Reference in a new issue