28 lines
818 B
JavaScript
28 lines
818 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
screens: {
|
|
'landscape': { 'raw': '(orientation: landscape)' },
|
|
'mobile-landscape': { 'raw': '(orientation: landscape) and (max-height: 500px)' },
|
|
},
|
|
animation: {
|
|
slideUp: 'slideUp 300ms ease-out',
|
|
slideDown: 'slideDown 300ms ease-out',
|
|
},
|
|
keyframes: {
|
|
slideUp: {
|
|
'0%': { transform: 'translateY(100%)', opacity: '0' },
|
|
'100%': { transform: 'translateY(0)', opacity: '1' },
|
|
},
|
|
slideDown: {
|
|
'0%': { transform: 'translateY(0)', opacity: '1' },
|
|
'100%': { transform: 'translateY(100%)', opacity: '0' },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|