some presentation cleanup
This commit is contained in:
parent
b58b2a3991
commit
6ca6f8ea3a
|
@ -45,12 +45,12 @@
|
|||
}
|
||||
}
|
||||
</style>
|
||||
<title>Status.im Liquid Funding</title>
|
||||
<title>Liquid Funding</title>
|
||||
</head>
|
||||
<body class="container">
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
<div id="app">
|
||||
<div id="preload" class="Loading-container">
|
||||
<div id="loading" class="Loading-container">
|
||||
<img class="Loading-logo" id="loading" src="%PUBLIC_URL%/images/status.png" />
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -29,7 +29,10 @@ const useStyles = makeStyles(theme => ({
|
|||
justifyContent: 'space-evenly',
|
||||
alignItems: 'center',
|
||||
width: '100%',
|
||||
fontSize: '1.4vw'
|
||||
fontSize: '5.4vw',
|
||||
[theme.breakpoints.up('md')]: {
|
||||
fontSize: '1.4vw'
|
||||
}
|
||||
},
|
||||
progress: {
|
||||
color: theme.palette.primary[500],
|
||||
|
|
|
@ -105,7 +105,7 @@ export const getProjects = gql`
|
|||
${pledgesInfosFields}
|
||||
|
||||
query Projects($type: String! = "PROJECT", $limit: Int, $offset: Int){
|
||||
profiles(where: {type: $type, projectInfo_not: null}, first: $limit, skip: $offset) {
|
||||
profiles(where: {type: $type, projectInfo_not: null}, first: $limit, skip: $offset, orderBy: profileId, orderDirection: desc) {
|
||||
id
|
||||
addr
|
||||
canceled
|
||||
|
|
|
@ -148,10 +148,16 @@ const useStyles = makeStyles(theme => ({
|
|||
gridColumn: '40 / 44'
|
||||
},
|
||||
previousButton: {
|
||||
gridColumn: '3 / 9'
|
||||
gridColumn: '1 / 20',
|
||||
[theme.breakpoints.up('md')]: {
|
||||
gridColumn: '3 / 9'
|
||||
}
|
||||
},
|
||||
nextButton: {
|
||||
gridColumn: '42 / 48'
|
||||
gridColumn: '35 / 48',
|
||||
[theme.breakpoints.up('md')]: {
|
||||
gridColumn: '42 / 48'
|
||||
}
|
||||
},
|
||||
readMore: {
|
||||
gridColumn: '44 / 48',
|
||||
|
|
|
@ -41,6 +41,6 @@ createRoot(document.getElementById('app')).render(
|
|||
</MuiThemeProvider>
|
||||
</DatabaseProvider>
|
||||
).then(() => {
|
||||
document.getElementById('preload').remove()
|
||||
document.getElementById('loading').remove()
|
||||
});
|
||||
serviceWorker.register()
|
||||
|
|
Loading…
Reference in New Issue