Skip to content

Commit

Permalink
Add spacing between attempt count and icon
Browse files Browse the repository at this point in the history
  • Loading branch information
t895 committed Nov 20, 2024
1 parent 2fc8c99 commit de920b6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/src/main/kotlin/com/t895/dnsnet/ui/BlockLog.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.PaddingValues
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
Expand Down Expand Up @@ -219,6 +220,8 @@ fun BlockLog(
color = if (it.allowed) allowedColor else blockedColor,
)

Spacer(Modifier.padding(horizontal = 4.dp))

Box(contentAlignment = Alignment.Center) {
var showMenu by rememberSaveable { mutableStateOf(false) }
IconButton(onClick = { showMenu = true }) {
Expand Down

0 comments on commit de920b6

Please sign in to comment.