mirror of
https://github.com/zoriya/v10.git
synced 2026-08-10 16:09:18 +00:00
23 lines
453 B
TypeScript
23 lines
453 B
TypeScript
import { extendTailwindMerge } from 'tailwind-merge';
|
|
|
|
export const twMerge = extendTailwindMerge({
|
|
extend: {
|
|
classGroups: {
|
|
'font-size': [
|
|
'text-h1',
|
|
'text-h15',
|
|
'text-h2',
|
|
'text-h25',
|
|
'text-h3',
|
|
'text-h4',
|
|
'text-h5',
|
|
'text-p1',
|
|
'text-p2',
|
|
'text-p3',
|
|
'text-code',
|
|
],
|
|
'font-family': ['font-display-compact', 'font-display'],
|
|
},
|
|
},
|
|
});
|