diff --git a/list.php b/list.php
index 3f720e78..66bf7338 100644
--- a/list.php
+++ b/list.php
@@ -35,8 +35,7 @@ function getFullName() {
-
- }
+
diff --git a/scripts/pi-hole/js/list.js b/scripts/pi-hole/js/list.js
index d0dc387d..c23b8267 100644
--- a/scripts/pi-hole/js/list.js
+++ b/scripts/pi-hole/js/list.js
@@ -201,3 +201,12 @@ $(function(){
$(this).closest("." + $(this).attr("data-hide")).hide();
});
});
+
+$(document).ready(function () {
+ if (screen.width < 400) {
+ $(".input-group-btn").css("display", "initial");
+ }
+ else {
+ $(".input-group-btn").css("display", "table-cell");
+ }
+});