1.1.1 • Published 2 months ago

@hpnzm/tailwind-plugin-mantine v1.1.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 months ago

Introduction

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

Installation

npm install @hpnzm/tailwind-plugin-mantine
# or
yarn add @hpnzm/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 "@hpnzm/tailwind-plugin-mantine";

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

2 months ago

1.1.0

2 months ago