verdaccio-ui/src/components/UpLinks/styles.ts

23 lines
612 B
TypeScript
Raw Normal View History

import styled from '@emotion/styled';
import Text from '../../muiComponents/Text';
import { default as MuiListItemText } from '../../muiComponents/ListItemText';
import { Theme } from '../../design-tokens/theme';
2019-02-03 17:23:33 +07:00
export const StyledText = styled(Text)<{ theme?: Theme }>(props => ({
fontWeight: props.theme && props.theme.fontWeight.bold,
}));
2019-02-03 17:23:33 +07:00
export const Spacer = styled('div')({
flex: '1 1 auto',
borderBottom: '1px dotted rgba(0, 0, 0, 0.2)',
whiteSpace: 'nowrap',
height: '0.5em',
});
2019-02-03 17:23:33 +07:00
export const ListItemText = styled(MuiListItemText)({
flex: 'none',
color: 'black',
opacity: 0.6,
});