Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified bun.lockb
Binary file not shown.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"@inertiajs/vue3": "^1.2.0",
"@sentry/vue": "^8.30.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@vitejs/plugin-vue": "^5.1.4",
"autoprefixer": "^10.4.20",
"laravel-vite-plugin": "^1.0.5",
Expand Down
14 changes: 4 additions & 10 deletions resources/css/content.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
@layer components {
.content {
@apply prose text-neutral-700;

h1,
h2,
h3,
h4,
h5,
h6 {
@apply text-brand-900 font-heading;

a {
@apply text-brand-800 hover:no-underline;
}
@apply font-heading font-bold text-neutral-900;
}

h1 {
Expand Down Expand Up @@ -77,18 +75,14 @@
@apply border-b border-brand-200;
}

> * + * {
@apply mt-6;
}

* {
& + h1,
& + h2,
& + h3,
& + h4,
& + h5,
& + h6 {
@apply mt-12;
@apply mt-8;
}
}
}
Expand Down
1 change: 1 addition & 0 deletions tailwind.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,6 @@ module.exports = {

plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
}