Skip to content

Commit

Permalink
fix: font size
Browse files Browse the repository at this point in the history
  • Loading branch information
yuta-ikeoku committed Jun 15, 2024
1 parent c36a80f commit ffdba11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion torisetsu/src/jsMain/kotlin/components/base/Button.kt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fun button(
ButtonSize.NORMAL -> {
padding(16.px, 36.px)
borderRadius(16.px)
fontSize(18.px)
fontSize(32.px)
}

ButtonSize.LARGE -> {
Expand Down
5 changes: 3 additions & 2 deletions torisetsu/src/jsMain/kotlin/components/pages/ResultPage.kt
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ fun resultPage(onClickBack: () -> Unit) {
attrs = {
style {
whiteSpace("pre-line")
fontSize(18.px)
}
}
) {
Expand Down Expand Up @@ -106,15 +107,15 @@ fun resultPage(onClickBack: () -> Unit) {
display(DisplayStyle.Flex)
flexDirection(FlexDirection.Column)
alignItems(AlignItems.Center)
gap(12.px)
gap(20.px)
}
}

) {
H2(
attrs = {
style {
fontSize(20.px)
fontSize(24.px)
fontWeight(700)
textAlign("center")
color(Color.white)
Expand Down

0 comments on commit ffdba11

Please sign in to comment.