Skip to content

Commit 27c3aa6

Browse files
committed
Add extra padding to sliders section to prevent overlap with timer
1 parent d36afb3 commit 27c3aa6

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

app/src/main/kotlin/com/simplemobiletools/flashlight/screens/MainScreen.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@ internal fun MainScreen(
8181
sosButton()
8282
stroboscopeButton()
8383
slidersSection()
84+
Spacer(
85+
modifier = Modifier.size(SimpleTheme.dimens.padding.extraLarge)
86+
)
8487
}
8588

8689
Box(

app/src/main/kotlin/com/simplemobiletools/flashlight/views/SleepTimer.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ internal fun SleepTimer(
3434
width = 1.dp,
3535
color = divider_grey,
3636
shape = RectangleShape
37-
).background(SimpleTheme.colorScheme.surface)
37+
)
38+
.background(SimpleTheme.colorScheme.surface)
3839
) {
3940
Text(
4041
modifier = Modifier

0 commit comments

Comments
 (0)