mirror of
https://github.com/pi-hole/web.git
synced 2026-04-23 18:29:43 +01:00
Move buttons out of the way on small screens
This commit is contained in:
@@ -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");
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user