byjam / craft-tailwind-merge
Tailwind Merge Utility for Twig
Installs: 285
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
Type:craft-plugin
Requires
- php: >=8.2.0
- craftcms/cms: ^5.0
- gehrisandro/tailwind-merge-php: ^0.0.1
This package is not auto-updated.
Last update: 2024-11-19 19:33:36 UTC
README
Tailwind Merge Utility for Twig. This is a wrapper around
Usage
<a href="" class="{{ twMerge('rounded-full px-2 font-semibold border-4', 'font-bold border-6') }}">
</a>
Will return
<a href="" class="rounded-full px-2 font-bold border-6"></a>
For full usage take a look at https://github.com/gehrisandro/tailwind-merge-php which is a port of https://github.com/dcastil/tailwind-merge. All credits go to these two, this is just a wrapper.
Requirements
This plugin requires Craft CMS 4.4.0 or later, and PHP 8.1 or later.
Installation
You can install this plugin from the Plugin Store or with Composer.
From the Plugin Store
Go to the Plugin Store in your project’s Control Panel and search for “TailwindMerge”. Then press “Install”.
With Composer
Open your terminal and run the following commands:
# go to the project directory cd /path/to/my-project.test # tell Composer to load the plugin composer require byjam/craft-tailwind-merge # tell Craft to install the plugin ./craft plugin/install tailwind-merge