File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed
hub/src/main/kotlin/uk/co/sentinelweb/cuer/hub/ui/home
shared/src/commonMain/kotlin/uk/co/sentinelweb/cuer/app/ui Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ fun Home(coordinator: HomeUiCoordinator) {
107
107
when (state.value.route) {
108
108
Settings -> PreferencesUi (coordinator.preferencesUiCoordinator)
109
109
is Folders -> coordinator.filesUiCoordinator.FileBrowserDesktopUi ()
110
- ThemeTest -> SharedThemeView . View ()
110
+ ThemeTest -> SharedThemeTestView . TestView ()
111
111
LocalConfig -> LocalComposables .LocalDesktopUi (coordinator.localCoordinator)
112
112
Transfers -> coordinator.transfersUiCoordinator.TransfersDesktopUi ()
113
113
}
Original file line number Diff line number Diff line change @@ -119,17 +119,17 @@ fun CuerSharedTheme(
119
119
titleLarge = TextStyle (
120
120
fontFamily = LexendDora ,
121
121
fontWeight = fontWeightTitle,
122
- fontSize = 28 .sp
122
+ fontSize = 20 .sp
123
123
),
124
124
titleMedium = TextStyle (
125
125
fontFamily = LexendDora ,
126
126
fontWeight = fontWeightTitle,
127
- fontSize = 24 .sp
127
+ fontSize = 18 .sp
128
128
),
129
129
titleSmall = TextStyle (
130
130
fontFamily = LexendDora ,
131
131
fontWeight = fontWeightTitle,
132
- fontSize = 20 .sp
132
+ fontSize = 16 .sp
133
133
),
134
134
bodyLarge = TextStyle (
135
135
fontFamily = Inter ,
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ import uk.co.sentinelweb.cuer.app.ui.common.compose.views.HeaderButtonSolid
19
19
import uk.co.sentinelweb.cuer.shared.generated.resources.Res
20
20
import uk.co.sentinelweb.cuer.shared.generated.resources.ic_login
21
21
22
- object SharedThemeView {
22
+ object SharedThemeTestView {
23
23
24
24
@Composable
25
- fun View () {
25
+ fun TestView () {
26
26
CuerSharedTheme {
27
27
Column (modifier = Modifier
28
28
.verticalScroll(rememberScrollState())
Original file line number Diff line number Diff line change @@ -362,7 +362,7 @@ object FilesComposeables {
362
362
listItem.episodeNumber?.apply {
363
363
Tag (
364
364
this ,
365
- style = MaterialTheme .typography.bodyMedium ,
365
+ style = MaterialTheme .typography.bodySmall ,
366
366
color = MaterialTheme .colorScheme.surface.scaleDarkLight(2.1f , 0.8f )
367
367
)
368
368
}
Original file line number Diff line number Diff line change @@ -320,7 +320,7 @@ object RemotesComposables {
320
320
Text (
321
321
text = remote.title,
322
322
color = contentColor,
323
- style = MaterialTheme .typography.headlineSmall ,
323
+ style = MaterialTheme .typography.titleLarge ,
324
324
modifier = Modifier
325
325
.padding(start = 8 .dp),
326
326
)
@@ -330,7 +330,7 @@ object RemotesComposables {
330
330
contentDescription = " Playing Icon" ,
331
331
colorFilter = ColorFilter .tint(contentColor),
332
332
modifier = Modifier
333
- .padding(8 .dp)
333
+ .padding(2 .dp)
334
334
.size(24 .dp)
335
335
.align(Alignment .CenterVertically )
336
336
)
You can’t perform that action at this time.
0 commit comments