more button style

This commit is contained in:
Thies Mueller 2024-06-06 20:19:12 +02:00
parent 17740e0b78
commit 7aff3de0e4

View File

@ -41,6 +41,13 @@ accessibilityOptions.forEach(option => {
button.textContent = option;
button.style.display = 'block'; // Display each button on a new line
button.style.marginBottom = '5px'; // Add spacing between buttons
button.style.color = '#000';
button.style.backgroundColor = 'transparent';
button.style.border = 'none';
button.style.textAlign = 'left';
button.style.width = '100%';
button.style.padding = '10px';
button.style.cursor = 'pointer';
accessibilityMenu.appendChild(button);
});