cluedin-widget
Version:
This project contains all the pages needed for browsing entities and searching them. The aim is to replace the CluedIn.Webapp project with this one when all the pages ( including the Admin page ) will be ported to REACT.
49 lines (46 loc) • 742 B
JavaScript
const mainColor = '#06979e';
export const mainApp = {
a: {
cursor: 'pointer',
textDecoration: 'none',
color: mainColor,
},
ul: {
margin: 0,
padding: 0,
},
'.filterList li': {
':hover': {
backgroundColor: mainColor,
color: '#fff',
},
},
'.filterList li a': {
color: '#545454',
},
'.filterList li:hover a': {
color: '#fff',
},
'.filterList li.showMore:hover a': {
color: '#545454',
},
li: {
listStyle: 'none',
display: 'block',
},
};
export default {
colors: {
main: mainColor,
},
displayAsCell: {
display: 'table-cell',
},
link: {
color: mainColor,
cursor: 'pointer',
},
inlineBlock: {
display: 'inline-block',
},
};