2.1.0 • Published 1 month ago

@devoss/tailwind-plugin-mantine v2.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 month ago

Introduction

A tailwindcss plugin to bring Mantine and Tailwind CSS together with ease.

Installation

npm install @devoss/tailwind-plugin-mantine
# or
yarn add @devoss/tailwind-plugin-mantine

Usage

// mantine-theme.ts
export const theme = createTheme({
  // Put your mantine theme override here
});
// tailwind.config.ts
import type { Config } from "tailwindcss";
import pluginMantine from "@devoss/tailwind-plugin-mantine";

import { theme } from "./mantine-theme";
const config: Config = {
  // ...
  plugins: [pluginMantine(theme)],
  // ...
};
export default config;
2.1.0

1 month ago

2.0.0

2 months ago

1.1.0

3 months ago

1.0.0

3 months ago