Skip to content

Commit dfdb141

Browse files
committed
Add animation to bootstrap step
1 parent 41312d3 commit dfdb141

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/pages/CreateApp/BootstrapStep.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,14 @@ export const BootstrapStep: FC<BootstrapStepProps> = ({ appData, template }) =>
104104
return (
105105
<Layout headerContent={<Header />} footerContent={<Footer />}>
106106
<div className="w-full px-8 py-12 flex flex-col items-center justify-center">
107-
<img src={Bootstrap} alt="Bootstrap" className="w-[250px] h-auto mb-8" />
107+
{/* mitigate webm black background */}
108+
<div className="w-full bg-gradient-to-r from-background from-25% via-black via-50% to-background to-75% flex items-center justify-center mb-8">
109+
<div className="w-[310px] h-[310px]">
110+
<video width="310%" height="310" autoPlay muted loop playsInline>
111+
<source src="https://assets.oasis.io/webm/Oasis-Loader-310x310.webm" type="video/webm" />
112+
</video>
113+
</div>
114+
</div>
108115
<div className="mb-8">
109116
<h1
110117
className={`text-2xl font-white font-bold mb-2 text-center transition-all duration-800 ${

0 commit comments

Comments
 (0)