TODO: change api.conf URL references to use environment variables and add these variables to the docker-compose configuration for host domain
33 lines
568 B
JavaScript
33 lines
568 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const colors = require('tailwindcss/colors')
|
|
|
|
module.exports = {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx,vue}",
|
|
],
|
|
plugins: [
|
|
],
|
|
theme: {
|
|
screens: {
|
|
sm: '480px',
|
|
md: '768px',
|
|
lg: '976px',
|
|
xl: '1440px',
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'sans-serif'],
|
|
serif: ['Merriweather', 'serif'],
|
|
},
|
|
extend: {
|
|
spacing: {
|
|
'128': '32rem',
|
|
'144': '36rem',
|
|
},
|
|
borderRadius: {
|
|
'4xl': '2rem',
|
|
}
|
|
}
|
|
}
|
|
}
|