Fix a small issue on the odin official website example

This commit is contained in:
Nic Barker 2024-09-01 10:17:31 +12:00
parent 4d1b65071f
commit b64e318cdb

View File

@ -231,14 +231,14 @@ DeclarativeSyntaxPageDesktop :: proc() {
clay.Layout({sizing = {clay.SizingGrow({}), clay.SizingGrow({})}, childAlignment = {y = .CENTER}, padding = {32, 32}, childGap = 32}), clay.Layout({sizing = {clay.SizingGrow({}), clay.SizingGrow({})}, childAlignment = {y = .CENTER}, padding = {32, 32}, childGap = 32}),
clay.BorderConfig({left = {2, COLOR_RED}, right = {2, COLOR_RED}}), clay.BorderConfig({left = {2, COLOR_RED}, right = {2, COLOR_RED}}),
) { ) {
DeclarativeSyntaxPage({fontSize = 48, fontId = FONT_ID_TITLE_48, textColor = COLOR_LIGHT}, clay.SizingGrow({})) DeclarativeSyntaxPage({fontSize = 52, fontId = FONT_ID_TITLE_52, textColor = COLOR_RED}, clay.SizingPercent(0.5))
} }
} }
} }
DeclarativeSyntaxPageMobile :: proc() { DeclarativeSyntaxPageMobile :: proc() {
if clay.Container( if clay.Container(
clay.ID("SyntaxPageDesktop"), clay.ID("SyntaxPageMobile"),
clay.Layout( clay.Layout(
{ {
layoutDirection = .TOP_TO_BOTTOM, layoutDirection = .TOP_TO_BOTTOM,
@ -249,7 +249,7 @@ DeclarativeSyntaxPageMobile :: proc() {
}, },
), ),
) { ) {
DeclarativeSyntaxPage({fontSize = 52, fontId = FONT_ID_TITLE_52, textColor = COLOR_LIGHT}, clay.SizingGrow({})) DeclarativeSyntaxPage({fontSize = 48, fontId = FONT_ID_TITLE_48, textColor = COLOR_RED}, clay.SizingGrow({}))
} }
} }