Add extra padding to sliders section to prevent overlap with timer

This commit is contained in:
Ensar Sarajčić 2023-10-17 10:58:15 +02:00
parent d36afb3e13
commit 27c3aa60d0
2 changed files with 5 additions and 1 deletions

View File

@ -81,6 +81,9 @@ internal fun MainScreen(
sosButton() sosButton()
stroboscopeButton() stroboscopeButton()
slidersSection() slidersSection()
Spacer(
modifier = Modifier.size(SimpleTheme.dimens.padding.extraLarge)
)
} }
Box( Box(

View File

@ -34,7 +34,8 @@ internal fun SleepTimer(
width = 1.dp, width = 1.dp,
color = divider_grey, color = divider_grey,
shape = RectangleShape shape = RectangleShape
).background(SimpleTheme.colorScheme.surface) )
.background(SimpleTheme.colorScheme.surface)
) { ) {
Text( Text(
modifier = Modifier modifier = Modifier