CustomComponent
Ext.define('MyApp.view.modal.Popup', {
extend: 'Ext.Panel',
xtype: 'popup',
config: {
cls: 'popup',
modal: true,
centered: true,
hideOnMaskTap: true,
height: 'auto'
}
});
CSS
.popup {
width: 90%;
> .x-panel-inner {
position: relative;
overflow: hidden;
}
}