All Projects → chrisrowe → tailwindcss-triangle-after

chrisrowe / tailwindcss-triangle-after

Licence: other
CSS :after triangle plugin for tailwindcss framework

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to tailwindcss-triangle-after

movie-app
🌈 TMDB + Laravel + LiveWire + AlpineJS + ViewModels + Components = ❤️ Movies App 🔥
Stars: ✭ 43 (+126.32%)
Mutual labels:  tailwindcss-plugin
tailwindcss-custom-native
Tailwind CSS plugin that lets you write your configuration file with your own custom utilities as though they were native to the framework
Stars: ✭ 65 (+242.11%)
Mutual labels:  tailwindcss-plugin
react-tailwind
This is a complementary React code for the tailwindcss project.
Stars: ✭ 29 (+52.63%)
Mutual labels:  tailwindcss-plugin
tailwind-bootstrap-grid
Tailwind CSS plugin that generates Bootstrap's flexbox grid
Stars: ✭ 96 (+405.26%)
Mutual labels:  tailwindcss-plugin
variantwind
Most elegant way to work with TailwindCSS variants in Vue
Stars: ✭ 45 (+136.84%)
Mutual labels:  tailwindcss-plugin
tailwind-color-alpha
Automatic alpha variants for your Tailwind CSS colors based on your opacity config
Stars: ✭ 21 (+10.53%)
Mutual labels:  tailwindcss-plugin
intellij-tailwind-css
Tailwind IntelliJ Plugin Tailwind Cheat Sheet
Stars: ✭ 49 (+157.89%)
Mutual labels:  tailwindcss-plugin
tailwindcss-capsize
✂️ Tailwind CSS utility classes for trimming whitespace above & below capital letters.
Stars: ✭ 46 (+142.11%)
Mutual labels:  tailwindcss-plugin
tailwindcss-scrims
Configurable Tailwind plugin for generating scrim classes.
Stars: ✭ 35 (+84.21%)
Mutual labels:  tailwindcss-plugin
windstrap
Tailwind CSS with Bootstrap JS
Stars: ✭ 63 (+231.58%)
Mutual labels:  tailwindcss-plugin
tailwind-safelist-generator
Tailwind plugin to generate purge-safe.txt files
Stars: ✭ 89 (+368.42%)
Mutual labels:  tailwindcss-plugin
tailwindcss-autofill
🎨 TailwindCSS variant to style autocompleted form fields.
Stars: ✭ 22 (+15.79%)
Mutual labels:  tailwindcss-plugin
tailwindcss-aria-attributes
TailwindCSS variants for aria-* attributes
Stars: ✭ 92 (+384.21%)
Mutual labels:  tailwindcss-plugin
tailwindcss-background-extended
All of the missing background utilities for Tailwind CSS.
Stars: ✭ 25 (+31.58%)
Mutual labels:  tailwindcss-plugin

Triangle After Tailwind Plugin

Installation

Add this plugin to your project:

# Install via npm
npm install --save-dev tailwindcss-triangle-after

Usage

This plugin generates styles for CSS based triangles via ::after pseudo-elements.

The plugin accepts multiple objects where each key defines a class suffix for a triangle name. Triangle options are...

  • color: e.g. colors['blue']
  • direction: e.g. up, down, left or right
  • right: (optional / default 1rem) How far from the right of the parent should the pseudo-element be? e.g. 2rem.
  • top: (optional / default 50%) How far from the top of the parent should the pseudo-element be?
  • size: (in pixels) e.g. an array [width, height] or 9 for an equilateral triangle.

Here is the example for adding it to your project plugins

module.exports = {
  // ...
  plugins: [
    // ...
    require('./plugins/triangle-after')({
      triangles: {
        select: {
          color: colors['blue'],
          direction: 'down',
          size: [10, 6],
        },
        next: {
          color: colors['blue-darker'],
          direction: 'right',
          right: '2rem',
          top: '3rem',
          size: 12
        }
      },
    }),
  ],
}

This configuration would create the following classes ideal for using for customizing <select> elements and adding arrows to pagination links:

.triangle-after-select {
  position: relative;
}

.triangle-after-select::after {
  border-color: transparent;
  border-style: solid;
  content: "";
  height: 0;
  position: absolute;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  right: 1rem;
  border-top-color: #3490dc;
  border-width: 6px 5px 0 5px;
}

.triangle-after-next {
  position: relative;
}

.triangle-after-next::after {
  border-color: transparent;
  border-style: solid;
  content: "";
  height: 0;
  position: absolute;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  right: 2rem;
  border-left-color: #1c3d5a;
  border-width: 12px 0 12px 12px;
}

As per the tailwind plugin docs you can pass variants (responsive, hover, etc.) as a parameter.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].