Skip to content

Commit

Permalink
chore: Remove Generic Overlay Padding
Browse files Browse the repository at this point in the history
  • Loading branch information
wba2hi committed Feb 15, 2024
1 parent f094b76 commit 4de0c67
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ fun AdaptiveAppScreen(
val overlayModifier = Modifier
.zIndex(ZINDEX_OVERLAY)
.fillMaxSize()
.padding(connectionStatusViewPaddingValues)

when (selectedPage) {
NavigationPage.DOORS -> DoorOverlayView(
Expand Down Expand Up @@ -164,7 +163,8 @@ fun AdaptiveAppScreen(

NavigationPage.SETTINGS -> SettingsView(
settingsViewModel,
overlayModifier,
overlayModifier
.padding(connectionStatusViewPaddingValues),
)
}
}
Expand Down

0 comments on commit 4de0c67

Please sign in to comment.