Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pousse le footer en bas de la page #909

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion confiture-web-app/src/components/layout/SiteFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const bottomLinks = [
</script>

<template>
<footer id="footer" class="fr-footer" role="contentinfo">
<footer id="footer" class="fr-footer fr-mt-auto" role="contentinfo">
<div v-if="accountStore.account" class="fr-footer__top">
<div class="fr-container">
<div class="fr-grid-row fr-grid-row--start fr-grid-row--gutters">
Expand Down
6 changes: 6 additions & 0 deletions confiture-web-app/src/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
--dsfr-outline: #0a76f6;
}

#app {
display: flex;
flex-direction: column;
min-height: 100vh;
}

/* FIXME: Collapses have awful transition performances. Re-enable when performance problems have been fixed. */
.fr-collapse,
.fr-collapse::before {
Expand Down
Loading