mirror of
https://github.com/mempool/mempool.git
synced 2025-01-08 14:39:53 +01:00
58af0d78af
* Fix bisq dashboard tables overflow. * Fix nav-item mobile margin.
39 lines
633 B
SCSS
39 lines
633 B
SCSS
|
|
.table-container {
|
|
overflow: scroll;
|
|
scrollbar-width: none;
|
|
font-size: 13px;
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
@media(min-width: 576px){
|
|
font-size: 16px;
|
|
}
|
|
thead th{
|
|
text-align: right;
|
|
&:first-child{
|
|
text-align: left;
|
|
}
|
|
&:nth-child(2) {
|
|
display: none;
|
|
@media(min-width: 1100px){
|
|
display: table-cell;
|
|
}
|
|
}
|
|
}
|
|
tr {
|
|
td {
|
|
text-align: right;
|
|
&:first-child{
|
|
text-align: left;
|
|
}
|
|
&:nth-child(2) {
|
|
display: none;
|
|
@media(min-width: 1100px){
|
|
display: table-cell;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|