mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Better alignment of the reader right menu button
This commit is contained in:
parent
8068b11f1e
commit
815da4e78e
1 changed files with 8 additions and 2 deletions
|
|
@ -295,9 +295,12 @@ struct WebReaderContainerView: View {
|
|||
label: {
|
||||
#if os(iOS)
|
||||
Image(systemName: "ellipsis")
|
||||
.padding(.horizontal)
|
||||
.resizable(resizingMode: Image.ResizingMode.stretch)
|
||||
.aspectRatio(contentMode: .fit)
|
||||
.foregroundColor(.appGrayTextContrast)
|
||||
.frame(width: 20, height: 20)
|
||||
.scaleEffect(navBarVisibilityRatio)
|
||||
.frame(width: 36, height: 36)
|
||||
.padding()
|
||||
#else
|
||||
Text(LocalText.genericOptions)
|
||||
#endif
|
||||
|
|
@ -306,6 +309,9 @@ struct WebReaderContainerView: View {
|
|||
#if os(macOS)
|
||||
.frame(maxWidth: 100)
|
||||
.padding(.trailing, 16)
|
||||
#else
|
||||
.padding(.trailing, 3)
|
||||
.padding(.bottom, 10)
|
||||
#endif
|
||||
}
|
||||
.frame(height: readerViewNavBarHeight * navBarVisibilityRatio)
|
||||
|
|
|
|||
Loading…
Reference in a new issue