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);