|
12345678910111213141516171819 |
- /** @type {import('tailwindcss').Config} */
- export default {
- content: ['./index.html', './src/**/*.{vue,js,ts}'],
- theme: {
- extend: {
- height: {
- '15/16': '93.75%',
- '1/16': '6.25%',
- '11/12': '91.666666%',
- '1/10': '8.333333%'
- }
- },
- fontFamily: {
- 'header': ['Aleo'],
- }
- },
- plugins: [],
- }
-
|