Skip to content

Commit

Permalink
Fix width alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
memgonzales committed Nov 7, 2023
1 parent 15a7af0 commit ea6e5d0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/pages/home.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
dbc.Input(id='search-word', n_submit=0),
dbc.Button('Search', color='dark',
id='search-word-submit-btn', n_clicks=0)
], style={'width': '65%'})
], style={'width': '62%'})
], style={'position': 'fixed',
'width': 'inherit',
'backgroundColor': 'white',
Expand Down Expand Up @@ -94,11 +94,12 @@
dcc.Dropdown(
id='communities-dropdown',
value='Sense 1',
className='mb-4'
className='mb-4',
clearable=False,
),

dcc.Loading(html.Div(id='network-cooccurring-words'))
])
], className='pe-5')
])

# =========================
Expand Down Expand Up @@ -296,7 +297,7 @@
]),
width=9,
style={'paddingLeft': '5em',
'paddingRight': '2em'}
'paddingRight': '3em'}
),

dbc.Col(sidebar, width=3)
Expand Down

0 comments on commit ea6e5d0

Please sign in to comment.