analytics-jiten commited on
Commit
68ecb1f
·
1 Parent(s): 72dc9dc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -11,12 +11,13 @@ st.markdown('---')
11
 
12
 
13
  selected = option_menu(None, ["Home", "Classifier","Contact"],
14
- icons=['house', 'smiley', 'envelope-at-fill'],
15
- menu_icon="cast", default_index=0, orientation="vertical",
16
  styles={
17
- "icon": {"color": "red", "font-size": "20px"},
 
18
  "nav-link": {"font-size": "20px", "text-align": "left", "margin":"1px", "--hover-color": "#eee"},
19
- "nav-link-selected": {"background-color": "blue"},
20
  }
21
  )
22
 
 
11
 
12
 
13
  selected = option_menu(None, ["Home", "Classifier","Contact"],
14
+ icons=['house', 'cloud-upload', 'envelope-at-fill'],
15
+ menu_icon="cast", default_index=0, orientation="horizontal",
16
  styles={
17
+ "container": {"padding": "0!important", "background-color": "#fafafa"},
18
+ "icon": {"color": "orange", "font-size": "20px"},
19
  "nav-link": {"font-size": "20px", "text-align": "left", "margin":"1px", "--hover-color": "#eee"},
20
+ "nav-link-selected": {"background-color": "green"},
21
  }
22
  )
23