Skip to content

Commit 3aba060

Browse files
committed
Update style
1 parent ed339b6 commit 3aba060

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Core/Sources/HostApp/SharedComponents/SubSection.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ struct SubSection<Title: View, Content: View>: View {
1616
if !(title is EmptyView && description.isEmpty) {
1717
VStack(alignment: .leading, spacing: 8) {
1818
title
19+
.font(.system(size: 14).weight(.semibold))
1920

2021
if !description.isEmpty {
2122
Text(description)
@@ -27,7 +28,7 @@ struct SubSection<Title: View, Content: View>: View {
2728
}
2829

2930
if !(title is EmptyView && description.isEmpty) {
30-
Divider()
31+
Divider().padding(.bottom, 4)
3132
}
3233

3334
content()

0 commit comments

Comments
 (0)