Feathers UI - Is it possible to change the width of Alert box?

I increased the size of Alert label. This increases the height but width remains the same. How can I get custom width for Alert?

var alert = Alert.show("This is an alert", "Alert", ["OK"]);
alert.width = 500;

Ok. That was simple. Thanks.