Fixing css

This commit is contained in:
piotrpekala7 2021-01-26 17:48:10 +01:00
parent daf7da2189
commit 32945dbd55
2 changed files with 4 additions and 4 deletions

View File

@ -5,11 +5,11 @@ import IssueComponent from './issue';
import FilterComponent from './filter';
const wrapperStyle = {
justifyContent: 'center',
JustifyContent: 'center',
display: 'flex',
flex: 1,
flexDirection: 'row',
flexWrap: 'wrap',
FlexDirection: 'row',
FlexWrap: 'wrap',
margin: '20px'
};

View File

@ -12,7 +12,7 @@ const cardTitleStyle = {
const cardTextStyle = {
color: 'black',
overflowY: 'auto',
OverflowY: 'auto',
height: '100px'
};