change selection screen title font size

This commit is contained in:
white
2025-10-18 12:55:56 +03:00
parent cf38ef7ac2
commit 7a17c93622
2 changed files with 4 additions and 6 deletions

View File

@@ -283,11 +283,9 @@ fun StrategySelectionItem(strategy : StrategyCheckResult, prefs : SharedPreferen
.padding(horizontal = 8.dp)
.fillMaxWidth()
) {
if (strategy.domains.isNotEmpty()){
Text(
text = stringResource(R.string.selection_available_domains)
)
}
Text(
text = stringResource(R.string.selection_available_domains)
)
LazyColumn(modifier = Modifier.heightIn(max = 300.dp)) {
items(strategy.domains) { item ->
Card(

View File

@@ -82,7 +82,7 @@ fun StrategySelectionScreen(navController: NavController, vpnLauncher: ActivityR
title = {
Text(
text = stringResource(R.string.title_selection),
fontSize = 40.sp,
fontSize = 30.sp,
fontFamily = FontFamily(Font(R.font.unbounded, FontWeight.Normal))
)
},