A Tailwind CSS plugin that provides linear interpolated fluid-responsive spacings between two viewport widths.
Inspired by
Install the plugin from npm:
npm install -D git+https://github.com/tricks-gmbh/tailwindcss-linear-interpolation-fluid-spacing
or
yarn add -D git+https://github.com/tricks-gmbh/tailwindcss-linear-interpolation-fluid-spacing
Then add the plugin to your tailwind.config.js
file:
// tailwind.config.js
module.exports = {
theme: {
// ...
},
plugins: [
require('tailwindcss-linear-interpolation-fluid-spacing'),
// ...
],
}
MIT