Change config

This commit is contained in:
Maria Rushkova 2021-08-09 13:18:52 +02:00 committed by Jakub Sokołowski
parent 8a58a95256
commit 49d83b7ff3
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 8 additions and 9 deletions

View File

@ -1,11 +1,19 @@
module.exports = { module.exports = {
mode: "jit",
purge: [`_site/**/*.html`, `_site/**/*.css`], purge: [`_site/**/*.html`, `_site/**/*.css`],
theme: { theme: {
extend: { extend: {
backgroundImage: (theme) => ({ backgroundImage: (theme) => ({
arrow: "url(/assets/img/arrow.svg)", arrow: "url(/assets/img/arrow.svg)",
arrowWhite: "url(/assets/img/arrow-white.svg)", arrowWhite: "url(/assets/img/arrow-white.svg)",
arrowPeach: "url(/assets/img/arrow-peach.svg)",
}), }),
maxWidth: {
48: "48%",
},
maxHeight: {
nav: "350px",
},
}, },
screens: { screens: {
xxs: "370px", xxs: "370px",
@ -21,15 +29,6 @@ module.exports = {
lm: "1280px", lm: "1280px",
xl: "1440px", xl: "1440px",
}, },
maxHeight: {
0: "0",
"1/4": "25%",
"1/2": "50%",
"3/4": "75%",
nav: "350px",
full: "100%",
},
fontFamily: { fontFamily: {
sans: ["Open Sans", "sans-serif"], sans: ["Open Sans", "sans-serif"],
}, },