app: add bottom padding to avoid overlap with the footer

This commit is contained in:
Valentin Tolmer 2022-04-25 09:35:13 +02:00 committed by nitnelave
parent f52197e76f
commit c7f45b12ac

View File

@ -100,7 +100,7 @@ impl Component for App {
html! { html! {
<div class="container shadow-sm py-3"> <div class="container shadow-sm py-3">
{self.view_banner()} {self.view_banner()}
<div class="row justify-content-center"> <div class="row justify-content-center" style="padding-bottom: 80px;">
<div class="shadow-sm py-3" style="max-width: 1000px"> <div class="shadow-sm py-3" style="max-width: 1000px">
<Router<AppRoute> <Router<AppRoute>
render = Router::render(move |s| Self::dispatch_route(s, &link, is_admin)) render = Router::render(move |s| Self::dispatch_route(s, &link, is_admin))