mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Better sizing on webview nav bar items
This commit is contained in:
parent
42b0921ab6
commit
e831ba54ae
1 changed files with 2 additions and 2 deletions
|
|
@ -114,7 +114,7 @@ struct WebReaderContainerView: View {
|
|||
return Image(systemName: "headphones").font(.appTitleThree)
|
||||
}
|
||||
let name = audioController.isPlayingItem(itemID: item.unwrappedID) ? "pause.circle" : "play.circle"
|
||||
return Image(systemName: name).font(.appTitleThree)
|
||||
return Image(systemName: name).font(.appNavbarIcon)
|
||||
}
|
||||
|
||||
var navBar: some View {
|
||||
|
|
@ -139,7 +139,7 @@ struct WebReaderContainerView: View {
|
|||
action: { showPreferencesPopover.toggle() },
|
||||
label: {
|
||||
Image(systemName: "textformat.size")
|
||||
.font(.appTitleThree)
|
||||
.font(.appNavbarIcon)
|
||||
}
|
||||
)
|
||||
.padding(.horizontal)
|
||||
|
|
|
|||
Loading…
Reference in a new issue