Fixed issue with footer display.

This commit is contained in:
Daniel Wathen 2023-01-11 10:59:07 -07:00
parent a3f73e58d8
commit 7fbbca61b8
2 changed files with 12 additions and 7 deletions

View File

@ -34,10 +34,6 @@
<a class="nav-link text-light" asp-area="" asp-controller="Home" asp-action="Index">Home</a>
</li>
</ul>
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search" />
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</div>
</nav>
@ -48,9 +44,9 @@
</main>
</div>
<footer class="border-top footer text-muted fixed-bottom mb-3 mt-1 pb-1 pt-3">
<footer class="border-top footer text-muted" id="Footer">
<div class="container">
&copy; 2022 - Mesa Reporting Services
&copy; 2023 - Mesa Reporting Services
</div>
</footer>
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>

View File

@ -14,7 +14,7 @@ html {
}
body {
margin-bottom: 60px;
margin-bottom: 30px;
}
.multiselect {
@ -90,4 +90,13 @@ body {
margin-top: 25%;
width: 60%;
padding: 10px;
}
#Footer {
position: absolute;
bottom: 0px;
height: 10px;
width: 100%;
margin-bottom: 35px;
padding-top: 10px;
}