# tailwind-link-underline-effect

> Hover effect for text links

Latest version **1.0.2** (published 2022-05-24) · MIT license · 0 weekly downloads

## Install

```sh
npm install tailwind-link-underline-effect
pnpm add tailwind-link-underline-effect
yarn add tailwind-link-underline-effect
bun add tailwind-link-underline-effect
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2022-05-24 |
| First published | 2022-05-24 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 98.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Surjith S M |
| Maintainers | surjithctly |
| Keywords | create-tailwind-plugin, tailwind-css-plugin, tailwindcss, plugin |

## Links

- npm: https://www.npmjs.com/package/tailwind-link-underline-effect
- Repository: https://github.com/surjithctly/tailwind-link-underline-effect
- Homepage: https://github.com/surjithctly/tailwind-link-underline-effect#readme
- Issues: https://github.com/surjithctly/tailwind-link-underline-effect/issues
- npm.io page: https://npm.io/package/tailwind-link-underline-effect

## Alternatives

- [@sveltejs/kit](https://npm.io/package/@sveltejs/kit.md) — 2.2M weekly downloads
- [@atlaskit/theme](https://npm.io/package/@atlaskit/theme.md) — 402.0K weekly downloads
- [@tangle-network/brand](https://npm.io/package/@tangle-network/brand.md) — 10.0K weekly downloads
- [seneca](https://npm.io/package/seneca.md) — 7.4K weekly downloads
- [@bsb/base](https://npm.io/package/@bsb/base.md) — 7.2K weekly downloads

## Recent versions

- 1.0.2 (latest) — 2022-05-24

## README

# Tailwind Link Underline Effect

> Hover effect for text links

Install the plugin from npm:

```
$ npm install tailwind-link-underline-effect
```

Then add the plugin to your `tailwind.config.js` file:

```js
// tailwind.config.js
module.exports = {
  theme: {
    // ...
    // Optional. Your plugin might not have any options at all.
    linkUnderlineEffect: {
      // ...
      YOUR_PLUGIN_CUSTOM_OPTION: true,
      // ...
    },
  },
  variants: {
    // ...
    // Optional. Your plugin might not have any variants at all.
    linkUnderlineEffect: ['responsive'],
    // ...
  },
  plugins: [
    // ...
    require('tailwind-link-underline-effect'),
    // ...
  ],
};
```

This plugin will generate following CSS:

```css
/* ... */
.example-utility-class {
  display: block;
}

.custom-utility-class {
  background-color: red;
}
/* ... */
```

## License

Tailwind Link Underline Effect is licensed under the MIT License.

## Credits

Created with [create-tailwind-plugin](https://github.com/Landish/create-tailwind-plugin).

---
_Source: https://npm.io/package/tailwind-link-underline-effect · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
