Update app.py
Browse files
app.py
CHANGED
|
@@ -694,6 +694,28 @@ td img {
|
|
| 694 |
max-width: none !important;
|
| 695 |
}
|
| 696 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 697 |
"""
|
| 698 |
if __name__ == "__main__":
|
| 699 |
demo.launch(
|
|
|
|
| 694 |
max-width: none !important;
|
| 695 |
}
|
| 696 |
|
| 697 |
+
.custom-table {
|
| 698 |
+
width: 100%;
|
| 699 |
+
border-collapse: collapse;
|
| 700 |
+
table-layout: fixed;
|
| 701 |
+
}
|
| 702 |
+
|
| 703 |
+
.custom-table th,
|
| 704 |
+
.custom-table td {
|
| 705 |
+
border: 1px solid #ddd;
|
| 706 |
+
padding: 10px;
|
| 707 |
+
text-align: left;
|
| 708 |
+
vertical-align: top;
|
| 709 |
+
|
| 710 |
+
white-space: pre-wrap; /* 🔥 줄바꿈 */
|
| 711 |
+
word-break: break-word; /* 🔥 긴 문장 깨기 */
|
| 712 |
+
}
|
| 713 |
+
|
| 714 |
+
.custom-table th {
|
| 715 |
+
background: #f5f5f5;
|
| 716 |
+
font-weight: bold;
|
| 717 |
+
}
|
| 718 |
+
|
| 719 |
"""
|
| 720 |
if __name__ == "__main__":
|
| 721 |
demo.launch(
|