diff --git a/frontend/public/tailwind.css b/frontend/public/tailwind.css index 3305169..585cb49 100644 --- a/frontend/public/tailwind.css +++ b/frontend/public/tailwind.css @@ -1366,6 +1366,9 @@ .right-0 { right: calc(var(--spacing) * 0); } + .bottom-0 { + bottom: calc(var(--spacing) * 0); + } .bottom-full { bottom: 100%; } @@ -2172,6 +2175,9 @@ .pt-1 { padding-top: calc(var(--spacing) * 1); } + .pb-8 { + padding-bottom: calc(var(--spacing) * 8); + } .pb-20 { padding-bottom: calc(var(--spacing) * 20); } diff --git a/frontend/src/app.rs b/frontend/src/app.rs index 43e5b0c..e8d27e8 100644 --- a/frontend/src/app.rs +++ b/frontend/src/app.rs @@ -64,22 +64,19 @@ pub fn App() -> impl IntoView {