bgamazay commited on
Commit
5b48d63
·
verified ·
1 Parent(s): 5433d81

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +25 -26
app.py CHANGED
@@ -5,32 +5,31 @@ import io
5
 
6
  def main():
7
  # Sidebar logo and title
8
- with st.sidebar:
9
- col1, col2 = st.columns([1, 3]) # Adjust column proportions as needed
10
-
11
- # Display the logo in the first column
12
- with col1:
13
- logo = Image.open("logo.png")
14
- resized_logo = logo.resize((40, 40)) # Resize the logo to 50x50 pixels
15
- st.image(resized_logo)
16
-
17
- with col2:
18
- st.markdown(
19
- """
20
- <div style="
21
- display: flex;
22
- align-items: center;
23
- margin: 0;
24
- padding: 0;
25
- font-family: 'Inter', sans-serif;
26
- font-size: 26px;
27
- font-weight: bold;
28
- line-height: 1;">
29
- AI Energy Score
30
- </div>
31
- """,
32
- unsafe_allow_html=True,
33
- )
34
 
35
  # Sidebar instructions and link
36
  st.sidebar.title("Label Generator")
 
5
 
6
  def main():
7
  # Sidebar logo and title
8
+ with st.sidebar:
9
+ col1, col2 = st.columns([1, 5]) # Shrink the logo column and expand the text column
10
+
11
+ with col1:
12
+ logo = Image.open("logo.png")
13
+ resized_logo = logo.resize((40, 40)) # Resize the logo
14
+ st.image(resized_logo)
15
+
16
+ with col2:
17
+ st.markdown(
18
+ """
19
+ <div style="
20
+ display: flex;
21
+ align-items: center;
22
+ gap: 10px;
23
+ margin: 0;
24
+ padding: 0;
25
+ font-family: 'Inter', sans-serif;
26
+ font-size: 26px;
27
+ font-weight: bold;">
28
+ AI Energy Score
29
+ </div>
30
+ """,
31
+ unsafe_allow_html=True,
32
+ )
 
33
 
34
  # Sidebar instructions and link
35
  st.sidebar.title("Label Generator")