From 9a619753779f1c268f2dcbf21cab89b57e091e48 Mon Sep 17 00:00:00 2001 From: SindreKjelsrud Date: Sat, 5 Jul 2025 18:36:42 +0200 Subject: [PATCH] chore: Correct font family Signed-off-by: SindreKjelsrud --- app/styles.ts | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/app/styles.ts b/app/styles.ts index 275c9bf..cc2ba70 100644 --- a/app/styles.ts +++ b/app/styles.ts @@ -367,14 +367,16 @@ export const styles = StyleSheet.create({ minHeight: 80, textAlignVertical: "top", borderColor: "#4CAF50", - borderWidth: 1 + borderWidth: 1, + fontFamily: "Minecraft" }, sectionTitle: { fontSize: 20, fontWeight: "bold", color: "#fff", marginBottom: 10, - marginTop: 15 + marginTop: 15, + fontFamily: "Minecraft" }, buttonRow: { flexDirection: "row", @@ -414,6 +416,7 @@ export const styles = StyleSheet.create({ }, previewBaseText: { fontSize: 18, + fontFamily: "Minecraft" }, saveButton: { backgroundColor: "#4CAF50", @@ -425,7 +428,8 @@ export const styles = StyleSheet.create({ saveButtonText: { color: "#fff", fontSize: 18, - fontWeight: "bold" + fontWeight: "bold", + fontFamily: "Minecraft" }, noMotdsText: { color: "#ccc", @@ -462,6 +466,7 @@ export const styles = StyleSheet.create({ }, deleteButtonText: { color: "#fff", - fontWeight: "bold" + fontWeight: "bold", + fontFamily: "Minecraft" } }); \ No newline at end of file