Services Page Done (?)
This commit is contained in:
+20
-1
@@ -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"]
|
||||
);
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user