moonlantern1 commited on
Commit
a79c30b
·
verified ·
1 Parent(s): 8c0359e

Fix processing screen visibility and retry clip selection

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -550,7 +550,7 @@ INDEX_HTML = r"""<!DOCTYPE html>
550
  .screen { display: none; animation: fadeIn 0.5s ease; }
551
  .screen.active { display: block; }
552
  @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
553
- #screen-input { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: calc(100vh - 65px); padding: 40px 20px; text-align: center; }
554
  .eyebrow { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 16px; }
555
  .hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 500; line-height: 1.15; color: var(--ink); max-width: 620px; margin-bottom: 12px; }
556
  .hero-title em { font-style: italic; color: var(--gold); }
 
550
  .screen { display: none; animation: fadeIn 0.5s ease; }
551
  .screen.active { display: block; }
552
  @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
553
+ #screen-input.active { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: calc(100vh - 65px); padding: 40px 20px; text-align: center; }
554
  .eyebrow { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 16px; }
555
  .hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 500; line-height: 1.15; color: var(--ink); max-width: 620px; margin-bottom: 12px; }
556
  .hero-title em { font-style: italic; color: var(--gold); }