diff options
Diffstat (limited to 'Sora/Views/Post/PostGridView.swift')
| -rw-r--r-- | Sora/Views/Post/PostGridView.swift | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Sora/Views/Post/PostGridView.swift b/Sora/Views/Post/PostGridView.swift index 4c43eeb..1cb51fc 100644 --- a/Sora/Views/Post/PostGridView.swift +++ b/Sora/Views/Post/PostGridView.swift @@ -10,10 +10,7 @@ struct PostGridView: View { ScrollView { if manager.posts.isEmpty { ProgressView() - .frame( - width: settings.softLimitAsCGFloat(), - height: settings.softLimitAsCGFloat() - ) + .padding() } WaterfallGrid(manager.posts, id: \.id) { post in |