mirror of
https://github.com/mempool/mempool.git
synced 2025-03-01 01:00:00 +01:00
57 lines
925 B
SCSS
57 lines
925 B
SCSS
.reward-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
height: 76px;
|
|
.shared-block {
|
|
color: #ffffff66;
|
|
font-size: 12px;
|
|
}
|
|
.item {
|
|
display: table-cell;
|
|
padding: 0 5px;
|
|
width: 100%;
|
|
&:nth-child(1) {
|
|
display: none;
|
|
@media (min-width: 485px) {
|
|
display: table-cell;
|
|
}
|
|
@media (min-width: 768px) {
|
|
display: none;
|
|
}
|
|
@media (min-width: 992px) {
|
|
display: table-cell;
|
|
}
|
|
}
|
|
}
|
|
.card-text {
|
|
font-size: 22px;
|
|
margin-top: -9px;
|
|
position: relative;
|
|
}
|
|
.card-text.skeleton {
|
|
margin-top: 0px;
|
|
}
|
|
}
|
|
|
|
.card-text {
|
|
font-size: 22px;
|
|
}
|
|
|
|
.card-title {
|
|
font-size: 1rem;
|
|
color: #4a68b9;
|
|
}
|
|
|
|
.skeleton-loader {
|
|
width: 100%;
|
|
display: block;
|
|
&:first-child {
|
|
max-width: 90px;
|
|
margin: 15px auto 3px;
|
|
}
|
|
&:last-child {
|
|
margin: 10px auto 3px;
|
|
max-width: 55px;
|
|
}
|
|
}
|