fix(tailwind): Fix default font size to 17px
This commit is contained in:
parent
18baa73101
commit
7506cf36d4
@ -30,10 +30,10 @@ pub fn Blog(cx: Scope) -> impl IntoView {
|
|||||||
<div class="flex space-y-4 flex-col max-w-3xl container mx-auto">
|
<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>
|
<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>
|
<h2 class="text-3xl">"Modifying storageClass of kubernetes bitnami ElasticSearch cluster without downtime"</h2>
|
||||||
<p class="text-lg">"Thanks Percona for this excellent article "
|
<p class="">"Thanks Percona for this excellent article "
|
||||||
<a class="text-orange-400" href="https://www.percona.com/blog/change-storage-class-on-kubernetes-on-the-fly/">"Change Storage Class on Kubernetes on the Fly."</a>
|
<a class="text-orange-400" href="https://www.percona.com/blog/change-storage-class-on-kubernetes-on-the-fly/">"Change Storage Class on Kubernetes on the Fly."</a>
|
||||||
</p>
|
</p>
|
||||||
<p class="text-lg">"It inspired most of this procedure. Here is the summary"
|
<p class="">"It inspired most of this procedure. Here is the summary"
|
||||||
<ol class="list-decimal list-inside">
|
<ol class="list-decimal list-inside">
|
||||||
<li class="pb-2">"Delete the statefulset with "<code class="inline-block">"kubectl delete -n <namespace> statefulset --cascade=orphan <statefulset_name>"</code>" the "<code class="">"orphan"</code>" option is key here and will allow Kubernetes to delete the statefulset without deleting the pods."</li>
|
<li class="pb-2">"Delete the statefulset with "<code class="inline-block">"kubectl delete -n <namespace> statefulset --cascade=orphan <statefulset_name>"</code>" the "<code class="">"orphan"</code>" option is key here and will allow Kubernetes to delete the statefulset without deleting the pods."</li>
|
||||||
<li class="pb-2">"Change the storage class in the helm chart to the new one"</li>
|
<li class="pb-2">"Change the storage class in the helm chart to the new one"</li>
|
||||||
@ -41,9 +41,6 @@ pub fn Blog(cx: Scope) -> impl IntoView {
|
|||||||
<li class="pb-2">"Make sure your cluster is green "
|
<li class="pb-2">"Make sure your cluster is green "
|
||||||
<CodeBlock>{es_health_green}</CodeBlock>
|
<CodeBlock>{es_health_green}</CodeBlock>
|
||||||
</li>
|
</li>
|
||||||
<li class="pb-2">"Make sure your cluster is green "
|
|
||||||
<CodeBlock>"kubectl exec -n <namespace> <elasticsearch-pod> -it -- curl localhost:9200/_cluster/health?pretty"</CodeBlock>
|
|
||||||
</li>
|
|
||||||
</ol>
|
</ol>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -20,6 +20,10 @@
|
|||||||
src: url("/fonts/Lato-VariableFont_wght.ttf");
|
src: url("/fonts/Lato-VariableFont_wght.ttf");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
font-size: 17px;
|
||||||
|
}
|
||||||
|
|
||||||
.p-18 {
|
.p-18 {
|
||||||
padding:4.5rem;
|
padding:4.5rem;
|
||||||
}
|
}
|
||||||
|
@ -2,9 +2,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
content: ["./src/**/*.rs"],
|
content: ["./src/**/*.rs"],
|
||||||
theme: {
|
theme: {
|
||||||
fontSize: {
|
|
||||||
base: '1.125rem',
|
|
||||||
},
|
|
||||||
extend: {
|
extend: {
|
||||||
fontFamily: {
|
fontFamily: {
|
||||||
// 'sans': ['Nunito', 'ui-sans-serif', 'system-ui'],
|
// 'sans': ['Nunito', 'ui-sans-serif', 'system-ui'],
|
||||||
|
Loading…
Reference in New Issue
Block a user