fix: background height for tag and repo page
Signed-off-by: Raul Kele <raulkeleblk@gmail.com>
This commit is contained in:
parent
9ecfcf1665
commit
45a50bf6cd
@ -27,6 +27,8 @@ import { mapToRepoFromRepoInfo } from 'utilities/objectModels';
|
||||
const useStyles = makeStyles((theme) => ({
|
||||
pageWrapper: {
|
||||
backgroundColor: '#FFFFFF',
|
||||
display: 'flex',
|
||||
flexFlow: 'column',
|
||||
height: '100vh'
|
||||
},
|
||||
container: {
|
||||
|
@ -46,6 +46,8 @@ import ReferredBy from './Tabs/ReferredBy';
|
||||
const useStyles = makeStyles((theme) => ({
|
||||
pageWrapper: {
|
||||
backgroundColor: '#FFFFFF',
|
||||
display: 'flex',
|
||||
flexFlow: 'column',
|
||||
height: '100vh'
|
||||
},
|
||||
container: {
|
||||
|
@ -11,11 +11,16 @@ import ExploreHeader from 'components/Header/ExploreHeader';
|
||||
|
||||
const useStyles = makeStyles(() => ({
|
||||
pageWrapper: {
|
||||
height: '100%'
|
||||
height: '100%',
|
||||
display: 'flex',
|
||||
flexFlow: 'column'
|
||||
},
|
||||
container: {
|
||||
paddingTop: 5,
|
||||
paddingBottom: 5
|
||||
paddingBottom: 5,
|
||||
display: 'flex',
|
||||
flexFlow: 'column',
|
||||
height: '100%'
|
||||
},
|
||||
parentWrapper: {
|
||||
height: '100vh'
|
||||
@ -24,7 +29,10 @@ const useStyles = makeStyles(() => ({
|
||||
paddingTop: 10,
|
||||
paddingBottom: 10,
|
||||
backgroundColor: '#fff',
|
||||
width: '100%'
|
||||
width: '100%',
|
||||
display: 'flex',
|
||||
flexFlow: 'column',
|
||||
height: '100%'
|
||||
}
|
||||
}));
|
||||
|
||||
|
@ -11,11 +11,16 @@ import ExploreHeader from 'components/Header/ExploreHeader';
|
||||
|
||||
const useStyles = makeStyles(() => ({
|
||||
pageWrapper: {
|
||||
height: '100%'
|
||||
height: '100%',
|
||||
display: 'flex',
|
||||
flexFlow: 'column'
|
||||
},
|
||||
container: {
|
||||
paddingTop: 5,
|
||||
paddingBottom: 5
|
||||
paddingBottom: 5,
|
||||
display: 'flex',
|
||||
flexFlow: 'column',
|
||||
height: '100%'
|
||||
},
|
||||
parentWrapper: {
|
||||
height: '100vh'
|
||||
@ -24,7 +29,10 @@ const useStyles = makeStyles(() => ({
|
||||
paddingTop: 10,
|
||||
paddingBottom: 10,
|
||||
backgroundColor: '#fff',
|
||||
width: '100%'
|
||||
width: '100%',
|
||||
display: 'flex',
|
||||
flexFlow: 'column',
|
||||
height: '100%'
|
||||
}
|
||||
}));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user