mirror of
https://github.com/ArthurDanjou/website.git
synced 2026-01-14 20:19:35 +01:00
18 lines
284 B
CSS
18 lines
284 B
CSS
@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
|
|
}
|
|
}
|