fix min-h-screen that should not be on children routes
This commit is contained in:
parent
7506cf36d4
commit
8b6f11a98a
@ -26,7 +26,7 @@ pub fn Blog(cx: Scope) -> impl IntoView {
|
||||
].join("\n");
|
||||
view! { cx,
|
||||
<Title text="Blog - NationTech - Unconventional team for extraordinary challenges"/>
|
||||
<div class="text-white bg-indigo-950 min-h-screen">
|
||||
<div class="text-white bg-indigo-950">
|
||||
<div class="flex space-y-4 flex-col max-w-3xl container mx-auto">
|
||||
<h1 class="text-6xl text-orange-400 font-extrabold pt-12">"Blog"</h1>
|
||||
<h2 class="text-3xl">"Modifying storageClass of kubernetes bitnami ElasticSearch cluster without downtime"</h2>
|
||||
|
@ -6,7 +6,7 @@ use leptos_meta::*;
|
||||
pub fn HomePage(cx: Scope) -> impl IntoView {
|
||||
view! { cx,
|
||||
<Title text="NationTech - Unconventional team for extraordinary challenges"/>
|
||||
<div class="text-white bg-indigo-950 min-h-screen">
|
||||
<div class="text-white bg-indigo-950">
|
||||
<div class="flex space-y-4 flex-col max-w-3xl container mx-auto">
|
||||
<h1 class="text-6xl text-orange-400 font-extrabold pt-8">"NationTech"</h1>
|
||||
<h2 class="text-3xl">"Unconventional team for extraordinary challenges"</h2>
|
||||
|
Loading…
Reference in New Issue
Block a user