mirror of
https://github.com/mempool/mempool.git
synced 2026-08-19 13:18:06 +02:00
Merge pull request #6033 from mempool/natsoni/tx-list-highlight-overflow
Fix tx-list highlight overflow on small screens
This commit is contained in:
commit
9f279ec4c0
1 changed files with 6 additions and 0 deletions
|
|
@ -1,12 +1,18 @@
|
|||
.col {
|
||||
&:first-child {
|
||||
padding-right: 0;
|
||||
@media (max-width: 992px) {
|
||||
padding-right: 15px;
|
||||
}
|
||||
td:last-child {
|
||||
padding-right: calc(0.3em + 15px);
|
||||
}
|
||||
}
|
||||
&:last-child {
|
||||
padding-left: 0;
|
||||
@media (max-width: 992px) {
|
||||
padding-left: 15px;
|
||||
}
|
||||
td:first-child {
|
||||
padding-left: calc(0.3em + 15px);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue