+
diff --git a/tailwind.config.js b/tailwind.config.js
index 33ee17bc8a695..c002ef9a550a1 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -1,15 +1,13 @@
const defaultTheme = require('tailwindcss/defaultTheme');
+
import {
- scopedPreflightStyles,
isolateInsideOfContainer,
+ scopedPreflightStyles,
} from 'tailwindcss-scoped-preflight';
/** @type {import('tailwindcss').Config} */
module.exports = {
- content: [
- './app/**/*.{js,ts,jsx,tsx}',
- './src/components/**/*.{js,ts,jsx,tsx,mdx}',
- ],
+ content: ['./app/**/*.{js,ts,jsx,tsx}', './src/components/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
extend: {
animation: {
@@ -22,16 +20,16 @@ module.exports = {
},
keyframes: () => ({
fadeIn: {
- '0%': { opacity: 0 },
- '100%': { opacity: 1 },
+ '0%': {opacity: 0},
+ '100%': {opacity: 1},
},
fadeInLeft: {
- '0%': { opacity: 0, transform: 'translateX(-20px)' },
- '100%': { opacity: 1, transform: 'translateX(0)' },
+ '0%': {opacity: 0, transform: 'translateX(-20px)'},
+ '100%': {opacity: 1, transform: 'translateX(0)'},
},
fadeInRight: {
- '0%': { opacity: 0, transform: 'translateX(20px)' },
- '100%': { opacity: 1, transform: 'translateX(0)' },
+ '0%': {opacity: 0, transform: 'translateX(20px)'},
+ '100%': {opacity: 1, transform: 'translateX(0)'},
},
}),
fontFamily: {
@@ -55,6 +53,9 @@ module.exports = {
red: '#e1567c',
gold: '#F1B71C',
},
+ screens: {
+ 'lg-xl': {min: '1130px'},
+ },
},
},
plugins: [