Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -438,6 +438,18 @@ body { background-color: #f4f6f9; }
|
|
| 438 |
/* ββ Accordion ββ */
|
| 439 |
.accordion-button { font-weight: 600; }
|
| 440 |
.accordion-item { border-left: 4px solid #1a73e8 !important; margin-bottom: 6px; border-radius: 6px !important; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 441 |
"""
|
| 442 |
|
| 443 |
app = dash.Dash(
|
|
|
|
| 438 |
/* ββ Accordion ββ */
|
| 439 |
.accordion-button { font-weight: 600; }
|
| 440 |
.accordion-item { border-left: 4px solid #1a73e8 !important; margin-bottom: 6px; border-radius: 6px !important; }
|
| 441 |
+
|
| 442 |
+
/* ββ Tab fade-in animation ββ */
|
| 443 |
+
@keyframes tabFadeIn {
|
| 444 |
+
from { opacity: 0; transform: translateY(8px); }
|
| 445 |
+
to { opacity: 1; transform: translateY(0); }
|
| 446 |
+
}
|
| 447 |
+
#tab-content > * {
|
| 448 |
+
animation: tabFadeIn 0.25s ease forwards;
|
| 449 |
+
}
|
| 450 |
+
.tab-content > .tab-pane.active {
|
| 451 |
+
animation: tabFadeIn 0.25s ease forwards;
|
| 452 |
+
}
|
| 453 |
"""
|
| 454 |
|
| 455 |
app = dash.Dash(
|