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'; import FilterComponent from './filter';
const wrapperStyle = { const wrapperStyle = {
justifyContent: 'center', JustifyContent: 'center',
display: 'flex', display: 'flex',
flex: 1, flex: 1,
flexDirection: 'row', FlexDirection: 'row',
flexWrap: 'wrap', FlexWrap: 'wrap',
margin: '20px' margin: '20px'
}; };

View File

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