diff --git a/app/static/styles.css b/app/static/styles.css index a5695af..1d54a8d 100644 --- a/app/static/styles.css +++ b/app/static/styles.css @@ -151,6 +151,13 @@ a { color: inherit; text-decoration: none; } background: var(--blue); border-radius: 2px; margin-top: 28px; + animation: divider-breathe 5s ease-in-out infinite; +} + +@keyframes divider-breathe { + 0% { width: 48px; } + 50% { width: 100%; } + 100% { width: 48px; } } .brand-footer {