Permalink
Switch branches/tags
Nothing to show
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
32 lines (28 sloc) 803 Bytes
// Add units to padding and fontSize,
// as fela, styletron and jss-witout-preset leave raw numbers as is (not adding px),
// which is incorrect CSS (Chrome doesn't care, Firefox warns against them).
// I prefer explicit unit, anyway...
export const containerStyle = {
color: 'yellow',
display: 'block',
backgroundColor: 'rebeccapurple',
textAlign: 'center',
padding: '50px',
};
export const buttonStyle = {
color: 'yellow',
display: 'block',
backgroundColor: 'turquoise',
fontSize: '30px',
border: '3px solid yellow',
};
export const notUsedStyle = {
backgroundColor: 'hotpink',
fontSize: '300px',
border: '100px dashed deeppink',
};
export const stylesheet = {
container: containerStyle,
button: buttonStyle,
noUsed: notUsedStyle,
};