diff --git a/Ice/UI/IceUI/IceGroupBox.swift b/Ice/UI/IceUI/IceGroupBox.swift index a769128..ebfeb9a 100644 --- a/Ice/UI/IceUI/IceGroupBox.swift +++ b/Ice/UI/IceUI/IceGroupBox.swift @@ -80,16 +80,18 @@ struct IceGroupBox: 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 } }