Reasonabler CSS defaults

This commit is contained in:
tobias 2024-05-19 20:46:33 +02:00
parent 2cbd830255
commit 526bd24742
3 changed files with 7 additions and 3 deletions

View File

@ -3,9 +3,9 @@ import { getCurrentYear } from "@/utils/date";
import ThemeSwitcher from "./ThemeSwitcher.astro"; import ThemeSwitcher from "./ThemeSwitcher.astro";
--- ---
<footer class="flex justify-between"> <footer class="flex justify-between py-4">
<p class="text-lg font-semibold"> <p class="text-lg font-semibold">
&copy; {getCurrentYear()} Example Website. All rights reserved. &copy; {getCurrentYear()} Autonomic. Template distributed under AGPL 3.0.
</p> </p>
<ThemeSwitcher/> <ThemeSwitcher/>
</footer> </footer>

View File

@ -99,4 +99,8 @@
ul { ul {
@apply list-disc; @apply list-disc;
} }
select {
@apply bg-background border-primary border px-2 text-lg;
}
} }

View File

@ -31,7 +31,7 @@ import "@/global.css"
} }
</style> </style>
</head> </head>
<body class="autonomic min-h-screen flex flex-col mx-auto max-w-7xl px-4 text-primary bg-background"> <body class="autonomic min-h-screen flex flex-col mx-auto max-w-7xl px-6 text-primary bg-background">
<slot /> <slot />
</body> </body>
</html> </html>