feat: created the compliance details component (no data for now) fix: added missing properties into the gql schema and the compliance details component feat: added another chip type for a neutral situation style: change the property card style for the v1 specs fix: added front facing camera override to schema and components feat: added authorized override (status) column to the customers list table fix: moved name to the front of the phone on the customers list table fix: added sanctions description text on it's card fix: added id icon to the right of the customer name feat: created subpage button component and use it in the customer profile feat: created an image popper component and use it in the customer compliance page fix: added varying sizes to the customer details and id data cards fields refactor: simplify the compliance subpage code
25 lines
470 B
JavaScript
25 lines
470 B
JavaScript
const complianceDetailsStyles = {
|
|
complianceDetailsGrid: {
|
|
display: 'flex',
|
|
flexDirection: 'row'
|
|
},
|
|
firstColumn: {
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
width: '100%',
|
|
marginRight: 10
|
|
},
|
|
lastColumn: {
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
width: '100%',
|
|
marginLeft: 10
|
|
},
|
|
photoWrapper: ({ width }) => ({
|
|
display: 'flex',
|
|
justifyContent: 'center',
|
|
width
|
|
})
|
|
}
|
|
|
|
export { complianceDetailsStyles }
|