mirror of
https://github.com/emmabostian/developer-portfolios.git
synced 2025-06-03 08:03:59 +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: [],
|
||
|
}
|
||
|
|