├── .gitignore ├── LICENSE ├── README.md ├── algolia.png ├── composer.json ├── functions.php ├── google.png ├── icon.png ├── info.plist ├── screenshot.png ├── tailwindcss.php ├── v0_tailwindcss.php ├── v1_tailwindcss.php └── v2_tailwindcss.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | /vendor 3 | .idea 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clnt/alfred-tailwindcss-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clnt/alfred-tailwindcss-docs/HEAD/README.md -------------------------------------------------------------------------------- /algolia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clnt/alfred-tailwindcss-docs/HEAD/algolia.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clnt/alfred-tailwindcss-docs/HEAD/composer.json -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clnt/alfred-tailwindcss-docs/HEAD/functions.php -------------------------------------------------------------------------------- /google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clnt/alfred-tailwindcss-docs/HEAD/google.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clnt/alfred-tailwindcss-docs/HEAD/icon.png -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clnt/alfred-tailwindcss-docs/HEAD/info.plist -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clnt/alfred-tailwindcss-docs/HEAD/screenshot.png -------------------------------------------------------------------------------- /tailwindcss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clnt/alfred-tailwindcss-docs/HEAD/tailwindcss.php -------------------------------------------------------------------------------- /v0_tailwindcss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clnt/alfred-tailwindcss-docs/HEAD/v0_tailwindcss.php -------------------------------------------------------------------------------- /v1_tailwindcss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clnt/alfred-tailwindcss-docs/HEAD/v1_tailwindcss.php -------------------------------------------------------------------------------- /v2_tailwindcss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clnt/alfred-tailwindcss-docs/HEAD/v2_tailwindcss.php --------------------------------------------------------------------------------