diff --git a/wgp.py b/wgp.py index 135b42c7c..e85b79cf7 100644 --- a/wgp.py +++ b/wgp.py @@ -1583,22 +1583,35 @@ def generate_queue_html(queue): if len(queue) <= 1: return "
Queue is empty.
" - scroll_buttons = "" + top_button_html = "" + bottom_button_html = "" + if len(queue) > 11: - scroll_buttons = """ -
-
- -
-
- -
+ btn_style = "width: 100%; padding: 8px; margin-bottom: 2px; font-weight: bold; display: flex; justify-content: center; align-items: center;" + + top_button_html = f""" +
+ +
+ """ + + bottom_button_html = f""" +
+
"""