mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-08 01:46:28 +01:00
14 lines
267 B
JavaScript
14 lines
267 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
theme: {
|
|
extend: {
|
|
screens: {
|
|
scr: {'raw': 'screen'},
|
|
nsm: {'raw': '(min-width: 640px)'},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|