pavanmutha commited on
Commit
e0c0208
·
verified ·
1 Parent(s): 201af7b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -1
app.py CHANGED
@@ -97,7 +97,17 @@ def format_observations(observations):
97
  f"""
98
  <div style="margin: 15px 0; padding: 15px; background: white; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05);">
99
  <h3 style="margin: 0 0 10px 0; color: #4A708B;">{key.replace('_', ' ').title()}</h3>
100
- <pre style="margin: 0; padding: 10px; background: #eef2f7; border-radius: 4px; color: #1f2d3d; font-size: 14px;">{value}</pre>
 
 
 
 
 
 
 
 
 
 
101
  </div>
102
  """ for key, value in observations.items()
103
  ])
 
97
  f"""
98
  <div style="margin: 15px 0; padding: 15px; background: white; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05);">
99
  <h3 style="margin: 0 0 10px 0; color: #4A708B;">{key.replace('_', ' ').title()}</h3>
100
+ <pre style="
101
+ margin: 0;
102
+ padding: 10px;
103
+ background: #eef2f7;
104
+ border-radius: 4px;
105
+ color: #1f2d3d;
106
+ font-size: 14px;
107
+ font-family: 'Courier New', Courier, monospace;
108
+ white-space: pre-wrap;
109
+ opacity: 1;
110
+ ">{value}</pre>
111
  </div>
112
  """ for key, value in observations.items()
113
  ])