Hey! Little trick for you:
I use this function that helps me avoid having empty buttons in my website.
When I create a website I create all the structure first and then add links and stuff at the end but I always forgot some links to fill.
So I use this little helper:
<script>
jQuery(function($){
$('span.brxe-button').each(function () {
$(this).addClass('add-link')
})
})
</script>
<style>
.add-link {
border: 8px solid red !important;
}
</style>
It will add a big red border to all Bricks buttons without a link attached to it so you’ll see them inmediatly
Hope it’s useful for you!