Skip to content

Commit

Permalink
aligned all input boxes in onw row
Browse files Browse the repository at this point in the history
  • Loading branch information
paxuy committed Feb 3, 2025
1 parent c192dac commit 9d17334
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/layouts/training_page_layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def generate_coefficient_sliders(n_freqs=DEFAULT_N_FREQS):
dbc.Label("# of Freqs.:"),
],
style={
"display": "inline-block",
"display": "block",
},
),
html.Div(
Expand Down Expand Up @@ -232,7 +232,7 @@ def generate_coefficient_sliders(n_freqs=DEFAULT_N_FREQS):
dbc.Label("Steps:"),
],
style={
"display": "inline-block",
"display": "block", # Changed to block for stacking
},
),
html.Div(
Expand All @@ -248,7 +248,7 @@ def generate_coefficient_sliders(n_freqs=DEFAULT_N_FREQS):
],
style={
"width": "5vw",
"display": "inline-block",
"display": "block", # Changed to block for stacking
"padding-left": "8px",
},
),
Expand All @@ -261,7 +261,7 @@ def generate_coefficient_sliders(n_freqs=DEFAULT_N_FREQS):
dbc.Label("Stepsize: "),
],
style={
"display": "inline-block",
"display": "block",
},
),
html.Div(
Expand All @@ -277,7 +277,7 @@ def generate_coefficient_sliders(n_freqs=DEFAULT_N_FREQS):
],
style={
"width": "5vw",
"display": "inline-block",
"display": "block",
"padding-left": "8px",
},
),
Expand Down

0 comments on commit 9d17334

Please sign in to comment.