Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -159,6 +159,7 @@ logo_base64 = image_to_base64("pixelpk_logo.png")
|
|
| 159 |
|
| 160 |
markdown_content = f"""
|
| 161 |
<img src="data:image/png;base64,{logo_base64}" alt="Feedback Logo" style="width: 100px; height: 100px; margin-top: 10px;" />
|
|
|
|
| 162 |
<p style="margin-top: 5px;">Feedback analyzer give employee/students feedback, providing key insights into strengths, areas for improvement, and overall sentiments.</p>
|
| 163 |
"""
|
| 164 |
|
|
@@ -180,6 +181,10 @@ custom_css = """
|
|
| 180 |
max-height: 300px; /* Adjust as needed */
|
| 181 |
overflow-y: auto; /* Enables vertical scrolling */
|
| 182 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 183 |
</style>
|
| 184 |
"""
|
| 185 |
|
|
|
|
| 159 |
|
| 160 |
markdown_content = f"""
|
| 161 |
<img src="data:image/png;base64,{logo_base64}" alt="Feedback Logo" style="width: 100px; height: 100px; margin-top: 10px;" />
|
| 162 |
+
<h1>Employee OR Student Feedbcak Analyzer</h1>
|
| 163 |
<p style="margin-top: 5px;">Feedback analyzer give employee/students feedback, providing key insights into strengths, areas for improvement, and overall sentiments.</p>
|
| 164 |
"""
|
| 165 |
|
|
|
|
| 181 |
max-height: 300px; /* Adjust as needed */
|
| 182 |
overflow-y: auto; /* Enables vertical scrolling */
|
| 183 |
}
|
| 184 |
+
h1 {
|
| 185 |
+
text-align: center;
|
| 186 |
+
display:block;
|
| 187 |
+
}
|
| 188 |
</style>
|
| 189 |
"""
|
| 190 |
|