Add horizontal scroll bars to domains and clients in query log

Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
This commit is contained in:
Mcat12
2017-09-12 15:31:53 -04:00
parent 65ca086d51
commit 85f395dace
2 changed files with 10 additions and 3 deletions
+5
View File
@@ -10,3 +10,8 @@
display: none;
}
}
.ReactTable .rt-td.horizontal-scroll {
overflow: auto;
text-overflow: clip;
}
+5 -3
View File
@@ -88,19 +88,21 @@ const columns = [
Header: "Type",
id: "type",
accessor: r => r[1],
minWidth: 50
minWidth: 40
},
{
Header: "Domain",
id: "domain",
accessor: r => r[2],
minWidth: 200
minWidth: 200,
className: "horizontal-scroll"
},
{
Header: "Client",
id: "client",
accessor: r => r[3],
minWidth: 150
minWidth: 120,
className: "horizontal-scroll"
},
{
Header: "Status",