Skip to content
Snippets Groups Projects
Commit aa17bf4a authored by Tifenn Guillas's avatar Tifenn Guillas
Browse files

Fix bug footer => DONE

parent 6b628181
No related branches found
No related tags found
2 merge requests!68Develop,!23Fix bug footer => DONE
main {
margin-top: 100px;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
}
\ No newline at end of file
<header>
<app-anis-nav [isAuthenticated]="isAuthenticated | async" [loginToken]="loginToken | async" (logout)="logout()"></app-anis-nav>
</header>
<main class="container">
<main role="main" class="container flex-shrink-0 pb-4">
<router-outlet></router-outlet>
</main>
<footer class="bg-light">
<footer class="footer mt-auto bg-light">
<div class="container my-3">
<div class="row justify-content-center mb-3">
<small>&copy; ANIS 2014 - {{ year }}</small>
......
<!doctype html>
<html lang="en">
<html lang="en" class="h-100">
<head>
<meta charset="utf-8">
<title>AnisV3Client</title>
......@@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<app-root></app-root>
<body class="h-100">
<app-root class="d-flex flex-column h-100"></app-root>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment