mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-14 05:21:12 +00:00
More fixes
This commit is contained in:
parent
c86d627cee
commit
7ac9a750cb
2 changed files with 6 additions and 1 deletions
|
@ -36,7 +36,7 @@ extension StatusEditor {
|
|||
}
|
||||
.frame(height: 24)
|
||||
.padding(16)
|
||||
.background(.thinMaterial)
|
||||
.background(.thickMaterial)
|
||||
.cornerRadius(8)
|
||||
#else
|
||||
Divider()
|
||||
|
|
|
@ -60,8 +60,13 @@ struct TimelineUnreadStatusesView: View {
|
|||
}
|
||||
.accessibilityLabel("accessibility.tabs.timeline.unread-posts.label-\(observer.pendingStatusesCount)")
|
||||
.accessibilityHint("accessibility.tabs.timeline.unread-posts.hint")
|
||||
#if os(visionOS)
|
||||
.buttonStyle(.bordered)
|
||||
.tint(Material.ultraThick)
|
||||
#else
|
||||
.buttonStyle(.bordered)
|
||||
.background(Material.ultraThick)
|
||||
#endif
|
||||
.cornerRadius(8)
|
||||
#if !os(visionOS)
|
||||
.overlay(
|
||||
|
|
Loading…
Reference in a new issue