How to increase size of dropdown menu?

I am using beercss and alpinejs I need did dropdown menu, but it’s width is smaller than it’s context. <nav class="wrap"> <div class="tabs right-align"> <a>Tab 1</a> <a>Tab 2</a> <a>Tab 3</a> <a x-data="{ active: false }"> <button @click="active = !active"> <span>Login</span> <div x-show="active" class="dropdown"> <a> <label>Complementary text</label> </a> </div> </button> </a> </div> </nav> How to fix… Read More How to increase size of dropdown menu?