yinanhe commited on
Commit
905ebed
1 Parent(s): 90cb6cf

[update] update css

Browse files
Files changed (1) hide show
  1. app.py +15 -1
app.py CHANGED
@@ -143,6 +143,20 @@ def on_filter_model_size_method_change(selected_columns):
143
 
144
  block = gr.Blocks()
145
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
146
 
147
  with block:
148
  gr.Markdown(
@@ -238,4 +252,4 @@ with block:
238
  data_run.click(on_filter_model_size_method_change, inputs=[checkbox_group], outputs=data_component)
239
 
240
 
241
- block.launch()
 
143
 
144
  block = gr.Blocks()
145
 
146
+ css = """
147
+ table {
148
+ table-layout: fixed;
149
+ }
150
+ table td {
151
+ word-wrap: break-word;
152
+ max-width: 150px;
153
+ }
154
+ a {
155
+ color: blue;
156
+ text-decoration: underline;
157
+ }
158
+ """
159
+
160
 
161
  with block:
162
  gr.Markdown(
 
252
  data_run.click(on_filter_model_size_method_change, inputs=[checkbox_group], outputs=data_component)
253
 
254
 
255
+ block.launch(css=css)