Feat: footer reveal — page-scrollable-footer intégré aux vues
All checks were successful
Deploy / Deploy to Production (push) Successful in 25s
All checks were successful
Deploy / Deploy to Production (push) Successful in 25s
- Footer renommé page-scrollable-footer, positionné en dernier enfant de .page-container dans About, Blog et Article - Marges négatives pour aligner le footer pleine largeur (about / blog) - Retrait du footer global fixe de App.svelte Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
4d425dd126
commit
c6fa61c77b
6 changed files with 18 additions and 17 deletions
|
|
@ -3,6 +3,7 @@
|
|||
import { slides } from '@state/slides.svelte'
|
||||
|
||||
import { t } from '@i18n'
|
||||
import Footer from '@components/layout/Footer.svelte'
|
||||
|
||||
let { data } = $props()
|
||||
|
||||
|
|
@ -152,9 +153,10 @@
|
|||
</div>
|
||||
</section>
|
||||
{/if}
|
||||
|
||||
</div>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<style>
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
*/
|
||||
|
||||
import { t } from '@i18n'
|
||||
import Footer from '@components/layout/Footer.svelte'
|
||||
|
||||
let { data, onBack } = $props()
|
||||
|
||||
|
|
@ -114,6 +115,7 @@
|
|||
{/if}
|
||||
</article>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
|
||||
<style>
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
|
||||
import Article from '@views/Article.svelte'
|
||||
import { t } from '@i18n'
|
||||
import Footer from '@components/layout/Footer.svelte'
|
||||
|
||||
let { data } = $props()
|
||||
|
||||
|
|
@ -176,6 +177,7 @@
|
|||
<p class="blog-loading">{t('loading')}</p>
|
||||
{/if}
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
|
||||
{/if}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue