Spaces:
Runtime error
Runtime error
Commit
•
02ac244
1
Parent(s):
dcb554d
testing on a real space
Browse files- 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-
|
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-
|
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-
|
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)}`
|