1
0
mirror of https://github.com/SomboChea/ui synced 2024-09-29 04:47:47 +07:00
verdaccio-ui/src/components/CopyToClipBoard/styles.ts

23 lines
490 B
TypeScript
Raw Normal View History

import IconButton from '../../muiComponents/IconButton';
2019-02-03 17:23:33 +07:00
import styled from 'react-emotion';
export const ClipBoardCopy = styled('div')({
'&&': {
display: 'flex',
alignItems: 'center',
justifyContent: 'space-between',
},
});
2019-02-03 17:23:33 +07:00
export const ClipBoardCopyText = styled('span')({
'&&': {
display: 'inline-block',
textOverflow: 'ellipsis',
overflow: 'hidden',
whiteSpace: 'nowrap',
height: '21px',
},
});
2019-02-03 17:23:33 +07:00
export const CopyIcon = styled(IconButton)({});