mempool/frontend/src/app/components/tracker/tracker.component.scss

128 lines
1.9 KiB
SCSS
Raw Normal View History

2024-04-13 08:05:45 +00:00
.mobile-wrapper {
width: 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;
2024-04-13 09:05:50 +00:00
height: 100vh;
2024-04-13 12:26:30 +00:00
height: 100svh;
2024-04-13 08:05:45 +00:00
max-width: 600px;
max-height: 1000px;
box-sizing: border-box;
margin: 0;
2024-04-13 09:05:50 +00:00
display: flex;
flex-direction: column;
justify-content: start;
& > * {
flex-shrink: 0;
}
2024-04-08 04:27:49 +00:00
}
2024-04-13 12:26:30 +00:00
.heading {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
& > * {
flex-basis: 0;
flex-grow: 1;
}
.heading-label {
text-align: center;
margin: 0 1em;
}
}
.nav-header {
position: relative;
box-shadow: 0 -5px 15px #000;
z-index: 100;
}
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 {
2024-04-13 09:05:50 +00:00
background: var(--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;
2024-04-13 09:05:50 +00:00
}
.bottom-panel {
flex-grow: 1;
}
.progress-icon {
font-size: clamp(50px, 30vw, 200px);
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.footer-link {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
text-align: center;
padding: 0.5em;
background: var(--primary);
color: white;
2024-04-08 04:27:49 +00:00
}