Increased font weight for "HEAD" label in current branch

This commit is contained in:
Abdelilah El Aissaoui 2023-11-11 17:03:03 +01:00
parent 7ce7285d70
commit bcaea8a417
No known key found for this signature in database
GPG Key ID: 7587FC860F594869

View File

@ -10,6 +10,7 @@ import androidx.compose.material.*
import androidx.compose.runtime.*
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.dp
import com.jetpackduba.gitnuro.AppIcons
import com.jetpackduba.gitnuro.extensions.handOnHover
@ -446,6 +447,7 @@ private fun Branch(
text = "HEAD",
color = MaterialTheme.colors.onBackgroundSecondary,
style = MaterialTheme.typography.caption,
fontWeight = FontWeight.SemiBold,
modifier = Modifier.padding(horizontal = 16.dp),
)
}