mempool/frontend/src/app/components/test-transactions/test-transactions.component.scss

34 lines
489 B
SCSS
Raw Normal View History

2024-03-24 09:02:19 +00:00
.accept-results {
td, th {
&.allowed {
width: 10%;
text-align: center;
2024-03-24 09:02:19 +00:00
}
&.txid {
width: 50%;
}
&.rate {
width: 20%;
text-align: right;
white-space: wrap;
}
&.reason {
width: 20%;
text-align: right;
white-space: wrap;
}
}
@media (max-width: 950px) {
table-layout: auto;
td, th {
&.allowed {
width: 100px;
}
&.txid {
max-width: 200px;
}
}
}
}