Services Page Done (?)

This commit is contained in:
2024-06-07 20:10:50 +01:00
parent d4db77cf45
commit cc73a8e3da
41 changed files with 233 additions and 56 deletions
+20 -1
View File
@@ -3,6 +3,9 @@ export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
screens: {
1920: "1921px",
},
colors: {
"custom-bglight": "#1C1C1F",
"custom-bgdark": "#06060B",
@@ -18,5 +21,21 @@ export default {
},
},
},
plugins: [],
plugins: [
function ({ addUtilities }) {
addUtilities(
{
".padding-calc": {
"padding-left": "calc((100vw - 1920px)/2)",
"padding-right": "calc((100vw - 1920px)/2)",
},
".margin-calc": {
"margin-left": "calc((100vw - 1920px)/2)",
"margin-right": "calc((100vw - 1920px)/2)",
},
},
["responsive"]
);
},
],
};