Alert cuts off my label checkbox

I have an alert with checkbox inputs.

const alert = await this.alert.create({

  cssClass: 'my-custom-class',

  header: 'Your Address',

  inputs: [

    {

      name: 'checkbox1',

      type: 'checkbox',

      label: '360 North Michigan Avenue, 403 S. State.',

      value: 'value1',

      

    },

    {

      name: 'checkbox1',

      type: 'checkbox',
      label: '435 North Michigan Avenue, Chicago.',

      value: 'value1',

      

    },

    {

      name: 'checkbox1',

      type: 'checkbox',

      label: '875 North Michigan Avenue',

      value: 'value1',

      

    },

  ]

   

});

await alert.present();
}

The names of my items are long and are cut in half by the alert:

example1

I tried to change the alert width by “my-custom-class”, but it did not solve the problem.
How do I get all my label to be seen?