* 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.
35 lines
549 B
SCSS
35 lines
549 B
SCSS
#volumeHolder {
|
|
height: 500px;
|
|
background-color: #000;
|
|
overflow: hidden;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.table {
|
|
max-width: 100%;
|
|
overflow: scroll;
|
|
}
|
|
|
|
.loadingVolumes {
|
|
position: relative;
|
|
top: 45%;
|
|
z-index: 100;
|
|
}
|
|
|
|
.table-container {
|
|
overflow: scroll;
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
font-size: 13px;
|
|
@media(min-width: 576px){
|
|
font-size: 16px;
|
|
}
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.container-info{
|
|
overflow-x: scroll;
|
|
} |