mirror of
https://github.com/mempool/mempool.git
synced 2025-01-10 07:26:46 +01:00
2f8f3ca2e9
* 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.
41 lines
572 B
SCSS
41 lines
572 B
SCSS
.progress {
|
|
background-color: #2d3348;
|
|
position: relative;
|
|
top: 5px;
|
|
}
|
|
|
|
.title-block {
|
|
color: #FFF;
|
|
padding-top: 20px;
|
|
padding-bottom: 3px;
|
|
border-top: 3px solid #FFF;
|
|
}
|
|
|
|
.fiat {
|
|
font-size: 13px;
|
|
display: block;
|
|
@media (min-width: 992px) {
|
|
display: inline-block;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
|
|
.table {
|
|
tr td {
|
|
&:last-child{
|
|
text-align: right;
|
|
@media (min-width: 992px) {
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
h1 {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
@media (min-width: 576px) {
|
|
float: left;
|
|
margin-right: 10px;
|
|
}
|
|
} |