fix: don't rely on browser builtin css for CardsGrid margins (#3892)

This commit is contained in:
stefanprobst 2020-06-15 09:19:05 +02:00 committed by GitHub
parent d1ae11ba43
commit 1045ca753f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,8 @@ const CardsGrid = styled.ul`
flex-flow: row wrap;
list-style-type: none;
margin-left: -12px;
margin-top: 16px;
margin-bottom: 16px;
`;
export default class EntryListing extends React.Component {