I have a div inside which there are 4 buttons, but the text excels the div by reducing the screen
my html
<div class="row">
<div class="col-lg-3 col-md-4 col-sm-6">
{{ Form::button(nombre, ['class' => 'btn btn-giant btn-primary', 'id' => 'button', 'title' => 'Descriptio', 'onClick' => "submit"]) }}
</div>
</div>
This is my css
.btn-giant {
width: 100%;
height: 40vh;
font-size: 40px !important;
white-space: pre-wrap;
}