mempool/frontend/src/app/components/tracker/tracker.component.scss
2024-04-13 09:09:09 +00:00

75 lines
1.1 KiB
SCSS

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