Add extra padding to sliders section to prevent overlap with timer
This commit is contained in:
parent
d36afb3e13
commit
27c3aa60d0
|
@ -81,6 +81,9 @@ internal fun MainScreen(
|
||||||
sosButton()
|
sosButton()
|
||||||
stroboscopeButton()
|
stroboscopeButton()
|
||||||
slidersSection()
|
slidersSection()
|
||||||
|
Spacer(
|
||||||
|
modifier = Modifier.size(SimpleTheme.dimens.padding.extraLarge)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
Box(
|
Box(
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue