diff --git a/App/Tabs/TabPickerViewController.swift b/App/Tabs/TabPickerViewController.swift index 9c30856..c58b3fa 100644 --- a/App/Tabs/TabPickerViewController.swift +++ b/App/Tabs/TabPickerViewController.swift @@ -37,7 +37,7 @@ class TabPickerViewController: UIViewController, UICollectionViewDelegate } override func loadView() { - var listConfig = UICollectionLayoutListConfiguration(appearance: .grouped) + var listConfig = UICollectionLayoutListConfiguration(appearance: .insetGrouped) listConfig.trailingSwipeActionsConfigurationProvider = { [unowned self] indexPath in if self.dataSource?.snapshot().numberOfItems ?? 0 <= 1 { return nil diff --git a/App/Titlebar and URL Bar/ToolbarView.swift b/App/Titlebar and URL Bar/ToolbarView.swift index 58ecba3..1a06a3d 100644 --- a/App/Titlebar and URL Bar/ToolbarView.swift +++ b/App/Titlebar and URL Bar/ToolbarView.swift @@ -57,7 +57,7 @@ class ToolbarView: UIView let buttonContainerInset = UIEdgeInsets(top: 1.0, left: 0.0, bottom: 1.0, right: 0.0) - var urlBarPadding = CGFloat(8.0) + let urlBarPadding = CGFloat(8.0) var urlBarInsets = UIEdgeInsets(top: 0.0, left: 0.0, bottom: 0.0, right: 0.0) // Cancel button diff --git a/App/Titlebar and URL Bar/URLBar.swift b/App/Titlebar and URL Bar/URLBar.swift index f4b9ef0..ea05e8e 100644 --- a/App/Titlebar and URL Bar/URLBar.swift +++ b/App/Titlebar and URL Bar/URLBar.swift @@ -31,7 +31,7 @@ class URLBar: UIView private let refreshImage = UIImage(systemName: "arrow.clockwise") private let stopImage = UIImage(systemName: "xmark") - private let backgroundCornerRadius: CGFloat = 8 + private let backgroundCornerRadius: CGFloat = 4 convenience init() { self.init(frame: .zero)