main page, navbar mobile not fixed

This commit is contained in:
Henri
2026-01-21 12:36:53 +02:00
parent 490d9b2feb
commit cf8b623340
11 changed files with 546 additions and 108 deletions

42
tailwind.config.js Normal file
View File

@@ -0,0 +1,42 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{svelte,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
orange: {
DEFAULT: '#f0941d',
light: '#ffa940',
dark: '#d67d0a',
500: '#f0941d',
},
gray: {
50: '#fafafa',
100: '#f5f5f5',
200: '#e5e5e5',
300: '#d4d4d4',
800: '#262626',
900: '#171717',
},
},
spacing: {
'0': '0px',
'1': '4px',
'2': '8px',
'3': '16px',
'4': '24px',
'5': '32px',
'6': '48px',
},
maxWidth: {
'2xl': '700px',
'3xl': '800px',
'4xl': '900px',
},
},
},
plugins: [],
}