mirror of
https://github.com/SomboChea/ui
synced 2026-01-15 15:45:44 +07:00
* refactor(162): added forwardRef Card * refactor(162): introduced forwardRefDivider * refactor(162): introduced forwardRef MuiComponents * refactor(162): introducing forwardRef * refactor(162): introduced forwardRef * refactor(162): introduced forwardRef * fix(162): fixed link * fix: fixed port number * fix: fixed duplicated id * fix: fixed ref iconbutton * fix: updated snaps * fix: fixed port * fix: fixed eslint errors * fix: the item should be a button * fix: fixed eslint errors
49 lines
1.0 KiB
TypeScript
49 lines
1.0 KiB
TypeScript
import styled from 'react-emotion';
|
|
|
|
import Github from '../../icons/GitHub';
|
|
import colors from '../../utils/styles/colors';
|
|
import { fontWeight } from '../../utils/styles/sizes';
|
|
import Text from '../../muiComponents/Text';
|
|
import ListItem from '../../muiComponents/ListItem';
|
|
import ListItemText from '../../muiComponents/ListItemText';
|
|
import Grid from '../../muiComponents/Grid';
|
|
|
|
export const StyledText = styled(Text)({
|
|
fontWeight: fontWeight.bold,
|
|
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)({
|
|
'&&': {
|
|
padding: 0,
|
|
},
|
|
'&&:hover': {
|
|
backgroundColor: 'transparent',
|
|
},
|
|
});
|
|
|
|
export const RepositoryListItemText = styled(ListItemText)({
|
|
'&&': {
|
|
padding: '0 10px',
|
|
margin: 0,
|
|
},
|
|
});
|