Updates animation and Fly deployment settings

This commit is contained in:
Mihovil Ilakovac 2023-06-30 15:14:13 +02:00
parent 9954d8f3b4
commit 19c6ed21ff
3 changed files with 18 additions and 9 deletions

View File

@ -9,6 +9,6 @@ primary_region = "mad"
[http_service]
internal_port = 8080
force_https = true
auto_stop_machines = true
auto_start_machines = true
min_machines_running = 0
auto_stop_machines = false
auto_start_machines = false
min_machines_running = 1

View File

@ -345,7 +345,7 @@ export default function RunTheAppModal({ disabled, onDownloadZip }) {
return (
<>
<button
className={`button w-full${!disabled ? " animate-bounce" : ""}`}
className={`button w-full${true ? " animate-jumping" : ""}`}
disabled={disabled}
onClick={() => setShowModal(true)}
>

View File

@ -1,10 +1,19 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {},
extend: {
keyframes: {
jumping: {
"0%, 25%": { transform: "translateY(0)" },
"10%": { transform: "translateY(-7px)" },
"30%": { transform: "translateY(0)" },
},
},
animation: {
jumping: "jumping 3s ease infinite",
},
},
},
plugins: [],
}
};