diff --git a/scripts/pi-hole/php/header.php b/scripts/pi-hole/php/header.php
index 0a30e8436..db6519ae5 100644
--- a/scripts/pi-hole/php/header.php
+++ b/scripts/pi-hole/php/header.php
@@ -263,7 +263,7 @@ function pidofFTL()
-
-
+
diff --git a/style/pi-hole.css b/style/pi-hole.css
index 9a9dd29e3..b797c7230 100644
--- a/style/pi-hole.css
+++ b/style/pi-hole.css
@@ -411,3 +411,33 @@ td.details-control {
.form-control-feedback {
right: 12px;
}
+
+.icon-bounce {
+ display: inline-block;
+ position: relative;
+ animation: icon-bounce 1.5s infinite linear;
+}
+
+@keyframes icon-bounce {
+ 0%,
+ 20%,
+ 50%,
+ 70%,
+ 90%,
+ 100% {
+ transform: translateY(0);
+ }
+ 40% {
+ transform: translateY(-15px);
+ }
+ 60% {
+ transform: translateY(-8px);
+ }
+ 80% {
+ transform: translateY(-4px);
+ }
+}
+
+.navbar-nav {
+ height: 50px;
+}