mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
14 lines
565 B
JavaScript
14 lines
565 B
JavaScript
const plugin = require('tailwindcss/plugin');
|
|
|
|
module.exports = plugin(function ({ addBase }) {
|
|
addBase({
|
|
'.text-h1': { fontSize: '3.375rem', lineHeight: '4.5rem' },
|
|
'.text-h2': { fontSize: '1.625rem', lineHeight: '2.25rem' },
|
|
'.text-h3': { fontSize: '1.375rem', lineHeight: '1.75rem' },
|
|
'.text-p1': { fontSize: '1.125rem', lineHeight: '1.5rem' },
|
|
'.text-p2': { fontSize: '1rem', lineHeight: '1.313rem' },
|
|
'.text-p3': { fontSize: '0.875rem', lineHeight: '1.188rem' },
|
|
'.text-p4': { fontSize: '0.75rem', lineHeight: '1rem' },
|
|
});
|
|
});
|