forked from sombochea/verdaccio-ui
fix: introduced forwardRef (#181)
This commit is contained in:
committed by
Juan Picado @jotadeveloper
parent
a8deeb9b9d
commit
0c4fb7da13
@@ -1,8 +1,8 @@
|
||||
import { default as MuiCard } from '@material-ui/core/Card';
|
||||
import { default as MuiList } from '@material-ui/core/List';
|
||||
import styled from 'react-emotion';
|
||||
|
||||
import { default as Typography } from '../../muiComponents/Heading';
|
||||
import List from '../../muiComponents/List';
|
||||
|
||||
export const Wrapper = styled('div')({
|
||||
display: 'flex',
|
||||
@@ -28,11 +28,9 @@ export const Heading = styled(Typography)({
|
||||
color: '#4b5e40',
|
||||
});
|
||||
|
||||
export const List = styled(MuiList)({
|
||||
'&&': {
|
||||
padding: 0,
|
||||
color: '#4b5e40',
|
||||
},
|
||||
export const StyledList = styled(List)({
|
||||
padding: 0,
|
||||
color: '#4b5e40',
|
||||
});
|
||||
|
||||
export const Card = styled(MuiCard)({
|
||||
|
||||
Reference in New Issue
Block a user