Ionic popup - truncated text

As you can see from the image the Red button is supposed to say “YES” but the text has been elipsed.
How can i display a full text in popup buttons .

below is the popup config

$ionicPopup.confirm({
cssClass: ‘item-text-wrap’,
title: ‘Exiting Application’,
template: ‘Are you sure you want to exit the application?’,
cancelText: ‘No’,
cancelType : ‘button-balanced’,
okText: ‘Yes’,
okType: ‘button-assertive’
}).then(function(res) {
if (res) {
ionic.Platform.exitApp();
}
});

Update : Fixed, It is a CSS issue .

@rajamohammed How did you fixed it . I am facing the same situation