JSFiddle - React, Tailwind, and code Playground

HTML

<button class="toggle">
  <strong>Menu</strong>
</button>

SCSS

.toggle{
    position: fixed;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 40px;

    strong{
        position: absolute;
        left: -99999999px;
        //left: -9999999px;
    }
}

JavaScript

document.querySelector('.toggle').addEventListener('click', function() {
	alert("OK");
})