1
0
Fork 0

feat(freesewing.dev): Updated gradients and loading indicators

This commit is contained in:
Joost De Cock 2022-05-11 16:58:18 +02:00
parent 6c41b1d941
commit 7af63ed65f
8 changed files with 46 additions and 46 deletions

View file

@ -24,7 +24,7 @@ const social = {
const Footer = ({ app }) => (
<footer className="bg-neutral">
<div className={`theme-gradient h-1 w-full relative ${app.loading ? 'loading' : ''}`}></div>
<div className={`theme-gradient h-14 ${app.loading ? 'loading' : ''}`} />
<div className="p-4 py-16 flex flex-row bg-neutral -mt-1 z-0 gap-8 flex-wrap justify-around text-neutral-content">
<div className="w-64 mt-2">
<div className="px-4 mb-4"><CreativeCommonsLogo /></div>
@ -159,6 +159,7 @@ const Footer = ({ app }) => (
</a>
</div>
<div className={`theme-gradient h-14 ${app.loading ? 'loading' : ''}`} />
</footer>
)