Fix pagination responsive layout. (#590)

* Fix pagination responsive css.

* Fix css title block transaction alignment.

* Add pagination responsive layout to bisq tx page.

* Add pagination responsive  to bisq blocks page.

* Fix pagination css - bisq txs page.

* Add e2e tests for bisq and mainnet pagination.
This commit is contained in:
Miguel Medeiros
2021-07-05 16:28:56 -03:00
committed by GitHub
parent 5197a15e31
commit 1e9f131a2a
14 changed files with 138 additions and 35 deletions

View File

@@ -71,4 +71,29 @@ h1 {
.details-table td:first-child {
white-space: pre-wrap;
}
}
.block-tx-title {
margin-top: -1.5rem;
display: block;
text-align: right;
@media (min-width: 550px) {
margin-top: 1rem;
}
h2 {
width: auto;
display: inline-block;
float: left;
margin: 0;
line-height: 1.6;
padding-right: 10px;
top: -10px;
position: relative;
@media (min-width: 550px) {
top: 0px;
}
@media (min-width: 768px) {
line-height: 1;
}
}
}