Reduced font size for commit message and fixed issue in settings dialog when switching between themes
This commit is contained in:
parent
7164bd3e71
commit
fe77505e7d
@ -82,7 +82,7 @@ fun CommitChangesView(
|
|||||||
SelectionContainer {
|
SelectionContainer {
|
||||||
Text(
|
Text(
|
||||||
text = commit.fullMessage,
|
text = commit.fullMessage,
|
||||||
style = MaterialTheme.typography.body1,
|
style = MaterialTheme.typography.body2,
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.background(MaterialTheme.colors.background)
|
.background(MaterialTheme.colors.background)
|
||||||
|
@ -195,6 +195,7 @@ fun SettingButton(
|
|||||||
OutlinedButton(onClick = onClick) {
|
OutlinedButton(onClick = onClick) {
|
||||||
Text(
|
Text(
|
||||||
text = buttonText,
|
text = buttonText,
|
||||||
|
color = MaterialTheme.colors.primaryTextColor,
|
||||||
style = MaterialTheme.typography.body1,
|
style = MaterialTheme.typography.body1,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@ -282,6 +283,7 @@ private fun FieldTitles(
|
|||||||
) {
|
) {
|
||||||
Text(
|
Text(
|
||||||
text = title,
|
text = title,
|
||||||
|
color = MaterialTheme.colors.primaryTextColor,
|
||||||
style = MaterialTheme.typography.body1,
|
style = MaterialTheme.typography.body1,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user