t4t5 / sweetalert

A beautiful replacement for JavaScript's "alert"
https://sweetalert.js.org
MIT License
22.4k stars 2.84k forks source link

Cancel Button pull-left question #843

Open soongsta opened 6 years ago

soongsta commented 6 years ago

Hi There

Is it possible to align the cancel button on the left and the confirm button on the right of the footer? I was looking into the CSS of the button and adding the class pull-left (from bootstrap) did not seem to work.

Cheers

calraiden commented 5 years ago

I think you can use css to all first button:

.swal-footer .swal-button-container:first-child{
  float: left !important;
}