in js/lib/IEOverlay.js [17:61]
render: function render() {
var overLayStyles = {
width: '600px',
height: '150px',
position: 'relative',
top: '50%',
left: '50%',
marginTop: '-75px',
marginLeft: '-300px',
backgroundColor: 'white',
textAlign: 'center',
fontFamily: 'helvetica, arial, sans-serif',
zIndex: '11'
};
var h1Styles = {
fontSize: '24px',
lineHeight: '28px',
color: '#141823',
fontWeight: 'normal',
paddingTop: '44px'
};
var h2Styles = {
fontSize: '14px',
lineHeight: '20px',
color: '#9197a3',
fontWeight: 'normal'
};
return React.createElement(
'div',
{ style: overLayStyles, id: 'ieOverlay' },
React.createElement(
'h1',
{ style: h1Styles },
'Internet Explorer Is Not Supported'
),
React.createElement(
'h2',
{ style: h2Styles },
'Please use a modern browser such as Google Chrome or Mozilla Firefox'
)
);
}