49fdd23d58
* Move secureApi to shell * Extract isTestnet test * Use mobx + subscriptions for status * Re-add status indicator * Add lerna * Move intial packages to js/packages * Move 3rdparty/{email,sms}-verification to correct location * Move package.json & README to library src * Move tests for library packages * Move views & dapps to packages * Move i18n to root * Move shell to actual src (main app) * Remove ~ references * Change ~ to root (explicit imports) * Finalise convert of ~ * Move views into dapps as well * Move dapps to packages/ * Fix references * Update css * Update test spec locations * Update tests * Case fix * Skip flakey tests * Update enzyme * Skip previously ignored tests * Allow empty api for hw * Re-add theme for embed
44 lines
612 B
CSS
44 lines
612 B
CSS
.container {
|
|
padding: 1rem 2rem;
|
|
text-align: center;
|
|
|
|
h1 {
|
|
margin-top: 3rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
table {
|
|
text-align: left;
|
|
margin: auto;
|
|
max-width: 90vw;
|
|
|
|
th {
|
|
text-align: center;
|
|
}
|
|
|
|
td {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
button {
|
|
background-color: rgba(0, 136, 170, 1);
|
|
border: none;
|
|
border-radius: 5px;
|
|
color: white;
|
|
font-size: 1rem;
|
|
padding: 0.5em 1em;
|
|
width: 100%;
|
|
|
|
&:hover {
|
|
background-color: rgba(0, 136, 170, 0.8);
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
input {
|
|
font-size: 1rem;
|
|
padding: 0.5em 1em;
|
|
}
|
|
}
|