You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
401 B
21 lines
401 B
export const content = [
|
|
"./public/*.html",
|
|
"./app/helpers/**/*.rb",
|
|
"./app/javascript/**/*.js",
|
|
"./app/views/**/*.{erb,html}",
|
|
];
|
|
|
|
export const theme = {
|
|
extend: {
|
|
colors: {},
|
|
keyframes: {
|
|
"aurora": {
|
|
"0%": { transform: "translateY(-20%)" },
|
|
"100%": { transform: "translateY(0)" }
|
|
},
|
|
}
|
|
},
|
|
animation: {
|
|
"aurora": "aurora .2s ease-out",
|
|
},
|
|
}
|