How to use the datax-common.Colors.customBlue function in datax-common

To help you get started, we’ve selected a few datax-common examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github microsoft / data-accelerator / Website / Packages / datax-home / src / modules / home / components / footerItem.jsx View on Github external
const contentStyle = {
    display: 'flex',
    flexDirection: 'column',
    flex: 1,
    paddingLeft: 16,
    paddingRight: 16
};

const descriptionContainerStyle = {
    overflow: 'hidden',
    textOverflow: 'ellipsis',
    whiteSpace: 'nowrap'
};

const linkStyle = {
    color: Colors.customBlue
};
github microsoft / data-accelerator / Website / Packages / datax-home / src / modules / home / components / card.jsx View on Github external
paddingBottom: 16,
    height: 65
};

const footerContainerStyle = {
    paddingLeft: 16,
    paddingRight: 16,
    paddingTop: 0,
    paddingBottom: 12,
    width: 220,
    position: 'absolute',
    bottom: 0
};

const linkStyle = {
    color: Colors.customBlue
};