PHP Classes

File: tailwind.config.js

Recommend this page to a friend!
  Classes of Faris AL-Otabi   PHP Movies App   tailwind.config.js   Download  
File: tailwind.config.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Movies App
Implement a site about movies using TMDB API
Author: By
Last change:
Date: 8 months ago
Size: 1,009 bytes
 

Contents

Class file image Download
module.exports = { purge: [], theme: { extend: { width: { "96": "24rem" } }, spinner: theme => ({ default: { color: "#dae1e7", // color you want to make the spinner size: "1em", // size of the spinner (used for both width and height) border: "2px", // border-width of the spinner (shouldn't be bigger than half the spinner's size) speed: "500ms" // the speed at which the spinner should rotate } // md: { // color: theme('colors.red.500', 'red'), // size: '2em', // border: '2px', // speed: '500ms', // }, }) }, variants: {}, plugins: [ // optional configuration for resulting class name and/or tailwind theme key require("tailwindcss-spinner")({ className: "spinner", themeKey: "spinner" }) ] };