Skip to content

Commit

Permalink
Update IceGroupBox.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanbaird committed Oct 27, 2024
1 parent 8fc8997 commit 151df4b
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions Ice/UI/IceUI/IceGroupBox.swift
Original file line number Diff line number Diff line change
Expand Up @@ -80,16 +80,18 @@ struct IceGroupBox<Header: View, Content: View, Footer: View>: View {
var body: some View {
VStack(alignment: .leading) {
header
content
.padding(padding)
.background {
backgroundShape
.fill(.quinary)
.overlay {
backgroundShape
.stroke(.quaternary)
}
}
VStack {
content
}
.padding(padding)
.background {
backgroundShape
.fill(.quinary)
.overlay {
backgroundShape
.stroke(.quaternary)
}
}
footer
}
}
Expand Down

0 comments on commit 151df4b

Please sign in to comment.