Implement header component

This commit is contained in:
Jorge Vargas 2024-08-26 13:16:15 -06:00
parent 1928366081
commit d2431c41c6
28 changed files with 951 additions and 11268 deletions

View file

@ -1,8 +1,18 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
plugins: [],
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
screens: {
md: '880px'
},
extend: {
colors: {
dark: '#212529',
'dark-hover': '#2b3035',
gray: '#3f3f3f',
'gray-hover': '#4f4f4f'
}
}
},
plugins: []
}