* New concept for dashboard layout components. * Align dashboard componentes. * Add divider to fee box component. * Remove TV icon from mobile and tablet queries. * Fix form input overflow. * Add responsive css to statistic component. * Add responsive css to about page. * Add global padding bottom. * Fix graph page styles. * Add responsive chart and scrollable table. * Fix mobile css query for navbar menus. * Fix pagination responsive css. * Add CSS animated logo. * Revert "Add CSS animated logo." This reverts commit 92af38294c0d4fe815a801b37635cde7f8ee1ced. * Add extra skeleton to fee-box-component. * Fix latest-blocks and latest-transactions table css. * Adapt Bisq pages to responsive layout. * Remove parenthesis from fiat amout. Fiat prive break not break on desktop. Transaction ID align left. Fee box skeleton width resize. * Fix mobile table text-size. * Fix dashboard mempool info mobile alignment.
93 lines
1.3 KiB
SCSS
93 lines
1.3 KiB
SCSS
.qr-wrapper {
|
|
background-color: #FFF;
|
|
padding: 10px;
|
|
padding-bottom: 5px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.qrcode-col {
|
|
text-align: center;
|
|
}
|
|
|
|
.qrcode-col > div {
|
|
margin: 20px auto 5px;
|
|
@media (min-width: 768px) {
|
|
text-align: center;
|
|
margin: auto;
|
|
}
|
|
}
|
|
|
|
.fiat {
|
|
display: block;
|
|
font-size: 13px;
|
|
@media (min-width: 768px) {
|
|
display: inline-block;
|
|
font-size: 14px;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
.table {
|
|
tr td {
|
|
&:last-child {
|
|
text-align: right;
|
|
@media (min-width: 768px) {
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
h1 {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
@media (min-width: 576px) {
|
|
float: left;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
|
|
.address-link {
|
|
line-height: 26px;
|
|
margin-left: 0px;
|
|
top: 14px;
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: row;
|
|
@media (min-width: 768px) {
|
|
line-height: 38px;
|
|
}
|
|
}
|
|
|
|
.row{
|
|
flex-direction: column;
|
|
@media (min-width: 576px) {
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
|
|
.scriptmessage {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
vertical-align: middle;
|
|
max-width: 50px;
|
|
@media (min-width: 576px) {
|
|
max-width: 200px;
|
|
}
|
|
}
|
|
|
|
.scriptmessage.longer {
|
|
max-width: 500px;
|
|
}
|
|
|
|
@media (max-width: 767.98px) {
|
|
.mobile-bottomcol {
|
|
margin-top: 15px;
|
|
}
|
|
.scriptmessage.longer {
|
|
max-width: 200px !important;
|
|
}
|
|
|
|
.details-table td:first-child {
|
|
white-space: pre-wrap;
|
|
}
|
|
} |