mirror of
https://github.com/SomboChea/ui
synced 2024-11-05 06:04:28 +07:00
42 lines
835 B
TypeScript
42 lines
835 B
TypeScript
import styled from 'react-emotion';
|
|
import Grid from '@material-ui/core/Grid';
|
|
import ListItem from '@material-ui/core/ListItem';
|
|
import Typography from '@material-ui/core/Typography';
|
|
|
|
import Github from '../../icons/GitHub';
|
|
import colors from '../../utils/styles/colors';
|
|
|
|
export const Heading = styled(Typography)({
|
|
'&&': {
|
|
fontWeight: 700,
|
|
textTransform: 'capitalize',
|
|
},
|
|
});
|
|
|
|
export const GridRepo = styled(Grid)({
|
|
'&&': {
|
|
alignItems: 'center',
|
|
},
|
|
});
|
|
|
|
export const GithubLink = styled('a')({
|
|
'&&': {
|
|
color: colors.primary,
|
|
},
|
|
});
|
|
|
|
export const GithubLogo = styled(Github)({
|
|
'&&': {
|
|
fontSize: '40px',
|
|
color: colors.primary,
|
|
backgroundColor: colors.greySuperLight,
|
|
},
|
|
});
|
|
|
|
export const RepositoryListItem = styled(ListItem)({
|
|
'&&': {
|
|
paddingLeft: 0,
|
|
paddingRight: 0,
|
|
},
|
|
});
|