Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ class NotificationsViewController: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = StyleManager.tableViewBackgroundColor
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ private extension FulfillViewController {
///
func setupMainView() {
view.backgroundColor = StyleManager.tableViewBackgroundColor
tableView.backgroundColor = StyleManager.tableViewBackgroundColor
}

/// Setup: TableView
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ private extension AddANoteViewController {
/// Setup: TableView
///
private func configureTableView() {
view.backgroundColor = StyleManager.tableViewBackgroundColor
tableView.backgroundColor = StyleManager.tableViewBackgroundColor
tableView.estimatedRowHeight = Constants.rowHeight
tableView.rowHeight = UITableViewAutomaticDimension
}
Expand Down