How can I align my popup buttons correctly?
My code:
var confirmPopup = $ionicPopup.confirm({
title: ‘Do you want to reveal your identity’,
template: “See visitors allows you to reveal your identity to other people who have also visited this venue.
Your identity will only be visible to other people who choose to reveal their identity.
Do you want to continue?”,
cssClass: ‘custom-popup’,
});
confirmPopup.then(function(res) {//function to be carried out}
//CSS class
.custom-popup.popup-container .popup {
text-align: center;
}