jbilcke-hf HF staff commited on
Commit
02ac244
1 Parent(s): dcb554d

testing on a real space

Browse files
Files changed (1) hide show
  1. public/index.html +3 -3
public/index.html CHANGED
@@ -9,7 +9,7 @@
9
  <body>
10
  <div class="flex flex-col md:flex-row" x-data="app()" x-init="init()">
11
  <div
12
- class="hero md:h-screen bg-stone-100 transition-[width] delay-150 ease-in-out"
13
  :class="open ? 'w-full md:w-2/6' : 'w-full md:w-6/6'"
14
  >
15
  <div class="hero-content text-center">
@@ -74,12 +74,12 @@
74
  </div>
75
  </div>
76
  <div
77
- class="flex flex-col transition-[width] delay-150 ease-in-out md:h-screen"
78
  :class="open ? 'w-full md:w-4/6' : 'w-full md:w-0'"
79
  >
80
  <iframe
81
  id="iframe"
82
- class="border-none w-full md:min-h-screen"
83
  :src="!open
84
  ? '/placeholder.html'
85
  : `/app?prompt=${encodeURIComponent(prompt)}`
 
9
  <body>
10
  <div class="flex flex-col md:flex-row" x-data="app()" x-init="init()">
11
  <div
12
+ class="hero md:h-full bg-stone-100 transition-[width] delay-150 ease-in-out"
13
  :class="open ? 'w-full md:w-2/6' : 'w-full md:w-6/6'"
14
  >
15
  <div class="hero-content text-center">
 
74
  </div>
75
  </div>
76
  <div
77
+ class="flex flex-col transition-[width] delay-150 ease-in-out md:h-full"
78
  :class="open ? 'w-full md:w-4/6' : 'w-full md:w-0'"
79
  >
80
  <iframe
81
  id="iframe"
82
+ class="border-none w-full md:min-h-full"
83
  :src="!open
84
  ? '/placeholder.html'
85
  : `/app?prompt=${encodeURIComponent(prompt)}`