🚧 Define typo

This commit is contained in:
Freeze455
2021-08-17 14:00:00 +02:00
parent ad2b928eae
commit b46270b3f1
4 changed files with 71 additions and 29 deletions

View File

@@ -138,9 +138,9 @@
<main class="flex-1 relative z-0 focus:outline-none">
<div class="py-6 space-y-5">
<div class="max-w-7xl mx-auto px-4 sm:px-6 md:px-8">
<h1 class="text-4xl font-semibold text-gray-900 dark:text-white">{{ title }}</h1>
<h1 class="text-4xl font-semibold text-[#204977] dark:text-white">{{ title }}</h1>
</div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 md:px-8 dark:text-gray-400">
<div class="max-w-7xl mx-auto px-4 sm:px-6 md:px-8 dark:text-gray-400 space-y-6">
<slot />
</div>
</div>
@@ -202,4 +202,35 @@ function scrollMeTo (refName) {
window.scroll(0, top - 64);
}
</script>
</script>
<style lang="scss">
h1 {
color: #204977;
}
h2 {
@apply text-3xl leading-10;
color: #204977;
}
h3 {
@apply text-2xl leading-10;
color: #204977;
}
h4 {
@apply text-2xl leading-10;
color: #204977;
}
h5 {
@apply text-xl leading-10;
color: #204977;
}
h6 {
@apply text-lg leading-10;
color: #204977;
}
ul {
li {
@apply leading-8
}
}
</style>