style: format code for consistency and readability
This commit is contained in:
parent
69d26e89b7
commit
386813c524
44 changed files with 566 additions and 370 deletions
|
@ -1,11 +1,9 @@
|
|||
/** @type {import('tailwindcss').Config} */
|
||||
|
||||
const colors = require('tailwindcss/colors');
|
||||
const colors = require("tailwindcss/colors");
|
||||
|
||||
module.exports = {
|
||||
content: [
|
||||
"./src/**/*.{html,ts}",
|
||||
],
|
||||
content: ["./src/**/*.{html,ts}"],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
|
@ -13,16 +11,15 @@ module.exports = {
|
|||
},
|
||||
keyframes: {
|
||||
shake: {
|
||||
'0%, 100%': { transform: 'translateX(0)' },
|
||||
'25%': { transform: 'translateX(-30px)' },
|
||||
'75%': { transform: 'translateX(30px)' },
|
||||
"0%, 100%": { transform: "translateX(0)" },
|
||||
"25%": { transform: "translateX(-30px)" },
|
||||
"75%": { transform: "translateX(30px)" },
|
||||
},
|
||||
},
|
||||
animation: {
|
||||
shake: 'shake 10s ease-in-out infinite',
|
||||
shake: "shake 10s ease-in-out infinite",
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
|
||||
};
|
||||
|
|
Reference in a new issue