style changes to collectionSelector

This commit is contained in:
Abhinav-grd 2021-01-06 13:03:37 +05:30
parent b7e0ccd900
commit 99c57c5ad2
2 changed files with 4 additions and 4 deletions

View file

@ -22,8 +22,6 @@ const DropDiv = styled.div`
flex-direction: row;
border-width: 2px;
border-radius: 2px;
height:10px;
width:30%;
border-color: ${(props) => getColor(props)};
border-style: ${(props) => enableBorder(props)};
outline: none;

View file

@ -15,8 +15,10 @@ function CollectionSelector({
noDragEventsBubbling
showProgress={showProgress}
>
<Card style={{ maxHeight: "20%", cursor: 'pointer', border: 'solid', flexWrap: "nowrap" }}>
<Card.Img variant="top" src={item.thumb} />
<Card style={{ cursor: 'pointer', border: 'solid', width: "95%" }}>
<Card.Img variant="top" src={item.thumb} style={{
width: "100%", height: "150px"
}} />
<Card.Body>
<Card.Text>{item.collectionName}</Card.Text>
</Card.Body>