mirror of
https://github.com/ArthurDanjou/website.git
synced 2026-01-14 12:14:42 +01:00
Import drizzle replacing prisma
Signed-off-by: Arthur DANJOU <arthurdanjou@outlook.fr>
This commit is contained in:
14
assets/css/main.scss
Normal file
14
assets/css/main.scss
Normal file
@@ -0,0 +1,14 @@
|
||||
body {
|
||||
font-family: 'DM Sans', sans-serif;
|
||||
@apply flex h-full flex-col bg-zinc-50 dark:bg-black;
|
||||
}
|
||||
|
||||
.page-enter-active,
|
||||
.page-leave-active {
|
||||
transition: all 0.4s;
|
||||
}
|
||||
.page-enter-from,
|
||||
.page-leave-to {
|
||||
opacity: 0;
|
||||
transform: scale(0.97);
|
||||
}
|
||||
17
assets/css/tailwind.css
Normal file
17
assets/css/tailwind.css
Normal file
@@ -0,0 +1,17 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
@layer components {
|
||||
.max-w-9xl {
|
||||
max-width: 96rem;
|
||||
}
|
||||
|
||||
.w-container {
|
||||
@apply mx-auto max-w-9xl px-4 lg:px-32 md:px-16 sm:px-8;
|
||||
}
|
||||
|
||||
.text-subtitle {
|
||||
@apply text-zinc-600 dark:text-zinc-400 text-base
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user