global style and tailwind config

This commit is contained in:
bernini 2021-12-22 09:28:35 +01:00
parent 1b899e5579
commit b9c4df20dd
2 changed files with 6 additions and 3 deletions

View file

@ -19,19 +19,19 @@
.w-center {
width: 100%;
}
@media (min-width: 640px) {
@media (min-width: 580px) {
.w-center {width: 100% !important}
}
@media (min-width: 768px) {
.w-center {width: 100% !important}
}
@media (min-width: 1024px) {
.w-center {width: 600px !important}
.w-center {width: 580px !important}
}
@media (min-width: 1280px) {
.w-center {
width: 640px !important
width: 580px !important
}
}

View file

@ -15,6 +15,9 @@ module.exports = {
},
theme: {
extend: {
maxWidth: {
'600': '600px'
},
colors: {
gray: colors.coolGray,
blueGray: colors.blueGray,