From 857a5cc5b8cd2eb843590cfc352868f5e45b583f Mon Sep 17 00:00:00 2001 From: nick Date: Thu, 11 Jun 2026 00:06:06 -0600 Subject: [PATCH] fix font size --- firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino b/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino index bb62981..7c99ba4 100644 --- a/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino +++ b/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino @@ -945,7 +945,7 @@ static void create_overland_overview_screen() temp_tile_name_labels[i] = lv_label_create(tile); lv_label_set_text(temp_tile_name_labels[i], i == 0 ? "Cabin" : i == 1 ? "Fridge" : i == 2 ? "Outside" : "Other"); lv_obj_set_style_text_color(temp_tile_name_labels[i], lv_color_hex(0xB8C0C8), 0); - lv_obj_set_style_text_font(temp_tile_name_labels[i], &lv_font_montserrat_20, 0); + lv_obj_set_style_text_font(temp_tile_name_labels[i], &lv_font_montserrat_26, 0); lv_obj_set_width(temp_tile_name_labels[i], temp_tile_w - 8); lv_obj_set_style_text_align(temp_tile_name_labels[i], LV_TEXT_ALIGN_CENTER, 0); lv_obj_align(temp_tile_name_labels[i], LV_ALIGN_TOP_MID, 0, 78);