From e8b54b9168b1c21027e1cdbce236b47c28bb8817 Mon Sep 17 00:00:00 2001 From: SocksOnHead Date: Tue, 24 Oct 2023 01:02:11 +0200 Subject: [PATCH] Buttons on a line now --- client/web/scripts/file-list.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/web/scripts/file-list.js b/client/web/scripts/file-list.js index b37b86f..6f1ded4 100644 --- a/client/web/scripts/file-list.js +++ b/client/web/scripts/file-list.js @@ -22,6 +22,7 @@ export function loadFiles() { // Create a div for the icons and add it to the list item const iconDiv = document.createElement('div'); + iconDiv.className = 'd-flex'; li.appendChild(iconDiv); // Create a div for the play icon and add it to the icon div @@ -64,4 +65,4 @@ export function loadFiles() { }); }) .catch(error => console.error('Error:', error)); -} \ No newline at end of file +}