Tab.js 223 B

12345678910111213
  1. Ext.define('Ext.theme.material.tab.Tab', {
  2. override: 'Ext.tab.Tab',
  3. config: {
  4. iconAlign: 'top',
  5. flex: 1
  6. },
  7. platformConfig: {
  8. desktop: {
  9. maxWidth: 200
  10. }
  11. }
  12. });