Ton of changes to layout and resolving issues fixing the color scheme

This commit is contained in:
Sam DuBois
2022-12-18 21:19:53 -07:00
parent 2906fecf5c
commit 614e6a7ee8
7 changed files with 123 additions and 25 deletions

View File

@@ -64,8 +64,10 @@ struct NoteContentView: View {
return VStack(alignment: .leading) {
if let txt = try? AttributedString(markdown: artifacts.content, options: md_opts) {
Text(txt)
.font(.subheadline)
} else {
Text(artifacts.content)
.font(.subheadline)
}
if show_images && artifacts.images.count > 0 {
ImageCarousel(urls: artifacts.images)