* installed tailwind * updated menu - tailwind * removed old style * updated container size for navigation * updated footer style - tailwind * updated header style - tailwind * updated colors * updated about section - tailwind * updated experiences style - tailwind * WIP * improved responsiveness * updated favorite projects * updated buttons * updated projects view * updated footer style * updated about view * updated project view * updated style for contact form * updated mail contact * final style update * fixed buttons * fix scroll button * added autoscroll for contact form * updated paths in project * empty line added * unnecessary comment removed
27 lines
567 B
JavaScript
27 lines
567 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{vue,js}",
|
|
],
|
|
darkMode: true,
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
'arial': ['Arial', 'sans-serif'],
|
|
'roboto': ['Roboto', 'sans-serif'],
|
|
'thasadith': ['Thasadith', 'sans-serif']
|
|
},
|
|
fontSize: {
|
|
'logo-size': '2.5rem',
|
|
},
|
|
screens: {
|
|
'header-content': '900px'
|
|
},
|
|
colors: {
|
|
'kamilcraft-green': 'rgb(var(--color-kamilcraft-green) / <alpha-value>)'
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|