Html – How do I fix CSS styling inside of another element?
I'm trying to get a button to be the purple color listed within the code, but it refuses to show. Here is the HTML: function showSidebar() { const sidebar = document.querySelector('.sidebar') sidebar.style.display = 'flex' } function hideSidebar() { const sidebar…