1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 1 1 1 | /* * Base button styles that are used and extended across * various elements. */ var browserReset = { background: 'none repeat scroll 0 0 transparent', border: 'none', color: 'inherit', font: 'inherit', fontWeight: 'normal', overflow: 'visible', textTransform: 'none', verticalAlign: 'middle', margin: '0', padding: '0', WebkitFontSmoothing: 'antialiased', textAlign: 'left', whiteSpace: 'nowrap', cursor: 'pointer' }; var ButtonBaseStyles = { base: browserReset }; module.exports = ButtonBaseStyles; |