mirror of
https://github.com/emmabostian/developer-portfolios.git
synced 2025-06-01 15:13:58 +00:00
14 lines
258 B
JavaScript
14 lines
258 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{js,jsx,ts,tsx}",],
|
|
theme: {
|
|
extend: {},
|
|
fontFamily:{
|
|
rubix: ["Rubik", "sans-serif"],
|
|
poppins:["Poppins", "sans-serif"]
|
|
}
|
|
},
|
|
plugins: [],
|
|
}
|
|
|