richiam commited on
Commit
67d1729
Β·
verified Β·
1 Parent(s): 605087e

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +12 -0
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(