Browse Source

Minor css fixes

develop
Ezerous 4 years ago
parent
commit
28b9c6244a
  1. 3
      packages/concordia-app/src/assets/css/index.css
  2. 9
      packages/concordia-app/src/assets/css/loading-component.css
  3. 2
      packages/concordia-app/src/components/LoadingContainer.jsx

3
packages/concordia-app/src/assets/css/index.css

@ -1,4 +1,5 @@
body { body {
overflow: auto;
margin: 1em !important; margin: 1em !important;
} }
@ -8,4 +9,4 @@ body {
.i18next-newlines { .i18next-newlines {
white-space: pre-line !important; white-space: pre-line !important;
} }

9
packages/concordia-app/src/assets/css/loading-component.css

@ -2,16 +2,17 @@ body {
overflow: hidden; overflow: hidden;
} }
ul {
list-style-position: inside;
}
.loading-screen { .loading-screen {
overflow: hidden;
margin-top: 10em; margin-top: 10em;
text-align: center; text-align: center;
font-size: large; font-size: large;
} }
.loading-screen ul {
list-style-position: inside;
}
.loading-img { .loading-img {
margin-bottom: 3em; margin-bottom: 3em;
height: 12em; height: 12em;

2
packages/concordia-app/src/components/LoadingContainer.jsx

@ -37,7 +37,7 @@ const LoadingContainer = ({ children }) => {
<LoadingComponent <LoadingComponent
title="No connection to the Ethereum network!" title="No connection to the Ethereum network!"
message="Please make sure that:" message="Please make sure that:"
message_list={['MetaMask is unlocked and pointed to the correct, available network', messageList={['MetaMask is unlocked and pointed to the correct, available network',
'The app has been granted the right to connect to your account']} 'The app has been granted the right to connect to your account']}
imageType="ethereum" imageType="ethereum"
progress={20} progress={20}

Loading…
Cancel
Save