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()
|
||||
stroboscopeButton()
|
||||
slidersSection()
|
||||
Spacer(
|
||||
modifier = Modifier.size(SimpleTheme.dimens.padding.extraLarge)
|
||||
)
|
||||
}
|
||||
|
||||
Box(
|
||||
|
|
|
@ -34,7 +34,8 @@ internal fun SleepTimer(
|
|||
width = 1.dp,
|
||||
color = divider_grey,
|
||||
shape = RectangleShape
|
||||
).background(SimpleTheme.colorScheme.surface)
|
||||
)
|
||||
.background(SimpleTheme.colorScheme.surface)
|
||||
) {
|
||||
Text(
|
||||
modifier = Modifier
|
||||
|
|
Loading…
Reference in New Issue