styles-in-line.js 638 Bytes
Newer Older
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 28 29 30 31 32 33 34 35 36 37 38
const styles = {
  is_ok: {
    minHeight: '336px',
    boxSizing: 'border-box',
    padding: '60px 81px 0px 59px',
    overflow: 'hidden',
  },
  header: {
    marginBottom: '23px',
  },
  headerSpan: {
    fontSize: '14px',
    lineHeight: '24px',
  },
  headerSpan_1: {
    color: '#666',
    textAlign: 'right',
    marginRight: '24px',
  },
  headerSpan_2: {
    fontWeight: 'bold',
  },
  body: {
    display: 'flex',
    marginBottom: '60px',
  },
  body_span: {
    fontSize: '14px',
    lineHeight: '24px',
    color: '#666',
  },
  body_span_1: {
    textAlign: 'right',
    marginRight: '24px',
  },
};

export default styles;