2024-04-13 08:05:45 +00:00
|
|
|
.mobile-wrapper {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2024-04-08 04:27:49 +00:00
|
|
|
display: flex;
|
2024-04-13 08:05:45 +00:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2024-04-08 04:27:49 +00:00
|
|
|
}
|
|
|
|
|
2024-04-13 08:05:45 +00:00
|
|
|
.mobile-container {
|
|
|
|
width: 100vw;
|
|
|
|
height: 100%;
|
|
|
|
max-width: 600px;
|
|
|
|
max-height: 1000px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
2024-04-08 04:27:49 +00:00
|
|
|
}
|
|
|
|
|
2024-04-13 08:05:45 +00:00
|
|
|
.blockchain-wrapper {
|
2024-04-08 04:27:49 +00:00
|
|
|
position: relative;
|
2024-04-13 08:05:45 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
overflow: hidden;
|
|
|
|
pointer-events: none;
|
2024-04-08 04:27:49 +00:00
|
|
|
}
|
|
|
|
|
2024-04-13 08:05:45 +00:00
|
|
|
.panel {
|
|
|
|
background: var(--box-bg);
|
2024-04-08 04:27:49 +00:00
|
|
|
}
|
|
|
|
|
2024-04-13 08:05:45 +00:00
|
|
|
.field {
|
2024-04-08 04:27:49 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2024-04-13 08:05:45 +00:00
|
|
|
flex-wrap: nowrap;
|
2024-04-08 04:27:49 +00:00
|
|
|
align-items: baseline;
|
|
|
|
width: 100%;
|
2024-04-13 08:05:45 +00:00
|
|
|
max-width: 100%;
|
|
|
|
padding: 1em;
|
2024-04-08 04:27:49 +00:00
|
|
|
|
2024-04-13 08:05:45 +00:00
|
|
|
&:nth-child(even) {
|
|
|
|
background: var(--stat-box-bg);
|
2024-04-08 04:27:49 +00:00
|
|
|
}
|
2024-04-13 08:05:45 +00:00
|
|
|
|
|
|
|
.label {
|
|
|
|
margin-right: 1em;
|
2024-04-08 04:27:49 +00:00
|
|
|
}
|
2024-04-13 08:05:45 +00:00
|
|
|
.value {
|
|
|
|
flex-shrink: 1;
|
|
|
|
flex-grow: 1;
|
|
|
|
width: 0;
|
|
|
|
white-space: nowrap;
|
2024-04-08 04:27:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-13 08:05:45 +00:00
|
|
|
.tracker-bar {
|
|
|
|
padding: 1em 0.5em 0;
|
2024-04-08 04:27:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.accelerate {
|
|
|
|
display: flex !important;
|
|
|
|
align-self: auto;
|
2024-04-13 08:05:45 +00:00
|
|
|
margin-left: 1em;
|
|
|
|
background-color: var(--tertiary);
|
2024-04-08 04:27:49 +00:00
|
|
|
}
|
|
|
|
|
2024-04-13 08:05:45 +00:00
|
|
|
.confirmations {
|
|
|
|
margin-left: 1em;
|
2024-04-08 04:27:49 +00:00
|
|
|
}
|
|
|
|
|
2024-04-13 08:05:45 +00:00
|
|
|
.accelerateFullSize {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0.5rem 0.25rem;
|
2024-04-08 04:27:49 +00:00
|
|
|
background-color: #653b9c;
|
|
|
|
}
|