Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xammie/tailwindcss-named-z-index

Use named classes for z-index in tailwindcss
https://github.com/xammie/tailwindcss-named-z-index

tailwindcss tailwindcss-plugin z-index

Last synced: about 1 month ago
JSON representation

Use named classes for z-index in tailwindcss

Awesome Lists containing this project

README

        


tailwindcss-named-z-index


Build Status
Total Downloads
Latest Release
License

> **Note**
> This plugin is still in development

By default, tailwindcss has numbered z-indexes (`z-10`, `z-20`, `z-30`, etc.).
This plugin allows you to use named z-indexes instead which have an index based on the position in the array.
The first layer in the array will have the highest z-index.

## Installation

```bash
npm install tailwindcss-named-z-index
# or
yarn add tailwindcss-named-z-index
```

## Usage

```js
// tailwind.config.js
module.exports = {
theme: {
zIndexLayers: [
'header', // z-index: 30
'modal', // z-index: 20
'dropdown', // z-index: 10
]
},
plugins: [require('tailwindcss-named-z-index')],
}
```

```html




```

## Credits

- [Max Hoogenbosch](https://github.com/Xammie)
- [All Contributors](../../contributors)

## License

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

```