Styling widget

This commit is contained in:
Samuel Clay 2022-01-26 11:28:18 -05:00
parent 87c332a911
commit 1eab46dc7c

View file

@ -37,15 +37,15 @@ struct WidgetStoryView: View {
}
Text(feed.title)
.font(.system(size: 8))
.foregroundColor(.secondary)
.font(.system(size: 10))
.foregroundColor(.gray)
.lineLimit(1)
}
.padding([.bottom], 0)
}
Text(cache.cleaned(story.title))
.font(.system(size: 12, weight: .bold))
.font(.system(size: 12, weight: .medium))
.lineLimit(2)
.frame(maxWidth: .infinity, alignment: .leading)
.padding([.top], -6)