unco3892 commited on
Commit
c128c4e
1 Parent(s): 2b90e9b

Bump gradio version

Browse files
Files changed (1) hide show
  1. app.py +6 -26
app.py CHANGED
@@ -72,37 +72,17 @@ description = """
72
  """
73
 
74
  css = """
75
- /* Comprehensive table text alignment */
76
- .table-wrap table td,
77
- .table-wrap table td div,
78
- .table-wrap table td p,
79
- .examples-table td,
80
- .examples-table td div,
81
- .examples-table td p,
82
- .prose td,
83
- .prose td div,
84
- .prose td p {
85
  text-align: left !important;
86
- white-space: pre-wrap !important;
87
- word-break: break-word !important;
88
  }
89
-
90
- /* Ensure specific targeting of the real estate description column */
91
- .table-wrap table td:nth-child(2),
92
- .table-wrap table td:nth-child(2) div,
93
- .table-wrap table td:nth-child(2) p {
94
  text-align: left !important;
95
- padding: 8px !important;
96
  }
97
-
98
- /* Additional styling for better readability */
99
- .table-wrap table {
100
- width: 100% !important;
101
- table-layout: fixed !important;
102
  }
103
-
104
- .table-wrap table td {
105
- vertical-align: top !important;
106
  }
107
  """
108
 
 
72
  """
73
 
74
  css = """
75
+ .examples-table {
 
 
 
 
 
 
 
 
 
76
  text-align: left !important;
 
 
77
  }
78
+ .examples-table td {
 
 
 
 
79
  text-align: left !important;
 
80
  }
81
+ .examples-table p {
82
+ text-align: left !important;
 
 
 
83
  }
84
+ .prose td {
85
+ text-align: left !important;
 
86
  }
87
  """
88