1
0
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:
Norbi 2021-09-23 11:44:24 +03:00 committed by GitHub
parent db5b892e23
commit ae229d1698
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,6 +23,10 @@
color: var(--color-secondary);
}
.table [role='gridcell'] {
min-width: 0;
}
.table [role='row'] {
border-bottom: 1px solid var(--border-color) !important;
}
@ -57,6 +61,10 @@
display: none;
}
div [class*='Table-module'] {
scrollbar-width: thin;
}
.empty {
width: 100%;
text-align: left;