- Added a new breakpoint "laptop" with a width of 1348px to the Tailwind configuration. - This breakpoint accommodates the dimensions of 1348px width for responsive designs.
26 lines
598 B
JavaScript
26 lines
598 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
"littwin-blue": "#00AEEF", // Definiere die Farbe mit dem gewünschten Hex-Wert
|
|
},
|
|
screens: {
|
|
sm: "640px",
|
|
md: "768px",
|
|
lg: "1024px",
|
|
xl: "1280px",
|
|
laptop: "1348px", // Neue Bildschirmgröße für Laptop
|
|
"2xl": "1600px",
|
|
"3xl": "1920px",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|