PHP Classes

File: tailwind.config.js

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   Devs Hunt   tailwind.config.js   Download  
File: tailwind.config.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Devs Hunt
Manage courses and student enrolment
Author: By
Last change:
Date: 1 month ago
Size: 782 bytes
 

Contents

Class file image Download
const defaultTheme = require('tailwindcss/defaultTheme'); /** @type {import('tailwindcss').Config} */ module.exports = { content: [ './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', './storage/framework/views/*.php', './resources/views/**/*.blade.php', './node_modules/flowbite/**/*.js' ], theme: { extend: { fontFamily: { poppins: ["Poppins", "sans-serif", ...defaultTheme.fontFamily.sans] }, container: { padding: "2rem" }, colors: { dark: '#00103F' } }, }, plugins: [ // require('@tailwindcss/forms') require('flowbite/plugin') ], };