some presentation cleanup

This commit is contained in:
Barry Gitarts 2019-10-26 16:07:13 -04:00 committed by Barry G
parent b58b2a3991
commit 6ca6f8ea3a
5 changed files with 16 additions and 7 deletions

View File

@ -45,12 +45,12 @@
} }
} }
</style> </style>
<title>Status.im Liquid Funding</title> <title>Liquid Funding</title>
</head> </head>
<body class="container"> <body class="container">
<noscript>You need to enable JavaScript to run this app.</noscript> <noscript>You need to enable JavaScript to run this app.</noscript>
<div id="app"> <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" /> <img class="Loading-logo" id="loading" src="%PUBLIC_URL%/images/status.png" />
</div> </div>
</div> </div>

View File

@ -29,7 +29,10 @@ const useStyles = makeStyles(theme => ({
justifyContent: 'space-evenly', justifyContent: 'space-evenly',
alignItems: 'center', alignItems: 'center',
width: '100%', width: '100%',
fontSize: '1.4vw' fontSize: '5.4vw',
[theme.breakpoints.up('md')]: {
fontSize: '1.4vw'
}
}, },
progress: { progress: {
color: theme.palette.primary[500], color: theme.palette.primary[500],

View File

@ -105,7 +105,7 @@ export const getProjects = gql`
${pledgesInfosFields} ${pledgesInfosFields}
query Projects($type: String! = "PROJECT", $limit: Int, $offset: Int){ 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 id
addr addr
canceled canceled

View File

@ -148,10 +148,16 @@ const useStyles = makeStyles(theme => ({
gridColumn: '40 / 44' gridColumn: '40 / 44'
}, },
previousButton: { previousButton: {
gridColumn: '3 / 9' gridColumn: '1 / 20',
[theme.breakpoints.up('md')]: {
gridColumn: '3 / 9'
}
}, },
nextButton: { nextButton: {
gridColumn: '42 / 48' gridColumn: '35 / 48',
[theme.breakpoints.up('md')]: {
gridColumn: '42 / 48'
}
}, },
readMore: { readMore: {
gridColumn: '44 / 48', gridColumn: '44 / 48',

View File

@ -41,6 +41,6 @@ createRoot(document.getElementById('app')).render(
</MuiThemeProvider> </MuiThemeProvider>
</DatabaseProvider> </DatabaseProvider>
).then(() => { ).then(() => {
document.getElementById('preload').remove() document.getElementById('loading').remove()
}); });
serviceWorker.register() serviceWorker.register()