[READ-ONLY] Mirror of https://github.com/hacknug/tailwindcss-list-style. DEPRECATED: List-style utilities for Tailwind CSS. www.npmjs.com/package/tailwindcss-list-style
0

Configure Feed

Select the types of activity you want to include in your feed.

JavaScript 100.0%
9 1 0

Clone this repository

https://tangled.org/nestor.rip/tailwindcss-list-style https://tangled.org/did:plc:7na6tl6cxnggpthhsnb5rhdu
git@tangled.org:nestor.rip/tailwindcss-list-style git@tangled.org:did:plc:7na6tl6cxnggpthhsnb5rhdu

For self-hosted knots, clone URLs may differ based on your setup.



readme.md

Tailwind CSS List Style Plugin#

Deprecated due to Tailwind CSS supporting both listStyleType and listStylePosition as of v1.0.0.

This plugin adds utilities to use list-style with Tailwind CSS.

Installation#

Add this plugin to your project:

# Install using pnpm
pnpm install --save-dev tailwindcss-list-style

# Install using npm
npm install --save-dev tailwindcss-list-style

# Install using yarn
yarn add -D tailwindcss-list-style

Usage#

require('tailwindcss-list-style')(['responsive']),
.list-disc { list-style-type: disc; }
.list-circle { list-style-type: circle; }
.list-square { list-style-type: square; }
.list-decimal { list-style-type: decimal; }
.list-decimal-leading-zero { list-style-type: decimal-leading-zero; }
.list-lower-roman { list-style-type: lower-roman; }
.list-upper-roman { list-style-type: upper-roman; }
.list-lower-greek { list-style-type: lower-greek; }
.list-lower-latin { list-style-type: lower-latin; }
.list-upper-latin { list-style-type: upper-latin; }
.list-armenian { list-style-type: armenian; }
.list-georgian { list-style-type: georgian; }
.list-lower-alpha { list-style-type: lower-alpha; }
.list-upper-alpha { list-style-type: upper-alpha; }
.list-none { list-style-type: none; }

.list-inside { list-style-position: inside; }
.list-outside { list-style-position: outside; }