mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
Fix scrollbar showing on table on large screens (#866)
* changed min width of table cell * make scrollbar thin on Firefox * changed min-width value and component selector
This commit is contained in:
parent
db5b892e23
commit
ae229d1698
@ -23,6 +23,10 @@
|
|||||||
color: var(--color-secondary);
|
color: var(--color-secondary);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.table [role='gridcell'] {
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.table [role='row'] {
|
.table [role='row'] {
|
||||||
border-bottom: 1px solid var(--border-color) !important;
|
border-bottom: 1px solid var(--border-color) !important;
|
||||||
}
|
}
|
||||||
@ -57,6 +61,10 @@
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div [class*='Table-module'] {
|
||||||
|
scrollbar-width: thin;
|
||||||
|
}
|
||||||
|
|
||||||
.empty {
|
.empty {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
Loading…
Reference in New Issue
Block a user