stylesList.js 438 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
const stylesList = {
  content_div: {
    margin: '-24px',
    position: 'relative',
  },
  title: {
    color: '#333',
    fontSize: '16px',
    fontWeight: 'bold',
    width: '100%',
    lineHeight: '44px',
    textAlign: 'center',
    backgroundColor: '#E0E7EE',
  },
  button: {
    backgroundColor: 'rgba(255, 255, 255, 0)',
    border: '0 solid #cccccc',
    float: 'right',
    marginTop: '5px',
  },
};
export default stylesList;