Update design

This commit is contained in:
khatabwedaa
2021-09-19 22:34:01 +02:00
parent 97576ba282
commit c1aa6de033
9 changed files with 225 additions and 17 deletions

View File

@@ -1,4 +1,4 @@
const colors = require('tailwindcss/colors');
const colors = require("tailwindcss/colors");
module.exports = {
purge: [
@@ -11,6 +11,19 @@ module.exports = {
darkMode: "class",
theme: {
extend: {
keyframes: {
float: {
"0%, 100%": {
transform: "translatey(0px)",
},
"50%": {
transform: "translatey(-20px)",
},
},
},
animation: {
float: "float 4s ease-in-out infinite",
},
colors: {
teal: colors.teal,
},
@@ -20,6 +33,7 @@ module.exports = {
spacing: {
104: "26rem",
128: "32rem",
164: "41rem",
},
},
},