Skip to content

Commit 0987f78

Browse files
committed
refactor: make title centred and smaller
1 parent f9f5005 commit 0987f78

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Diff for: scripts/dataset_manager/gui.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@ def create_dataset_manager_tab():
8787
global status_label, dir_select
8888

8989
with ui.column().classes("max-w-2xl mx-auto p-4"):
90-
ui.label("OxSpires Dataset Manager").classes("text-h4 q-mb-md text-center")
91-
9290
# Directory selection section
9391
ui.label("Select Base Directory").classes("text-h6 q-mb-md text-center")
9492
with ui.row().classes("justify-center"):
@@ -214,9 +212,9 @@ def create_analysis_tab():
214212
ui.button("Run Analysis", color="primary").classes("q-mt-md")
215213

216214

217-
# Create the main application UI
218-
ui.label("Oxford Spires Dataset Tool").classes("text-h3 text-center q-my-md")
219-
215+
# Create the main application UI with better centering
216+
with ui.row().classes("w-full justify-center"):
217+
ui.label("Oxford Spires Dataset").classes("text-h4 q-my-md")
220218
# Create tabs
221219
with ui.tabs().classes("w-full justify-center") as tabs:
222220
ui.tab("Dataset Manager", icon="cloud_download")

0 commit comments

Comments
 (0)