We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1de7b4c commit 5781c2bCopy full SHA for 5781c2b
src/dashboard/Data/Views/Views.react.js
@@ -176,7 +176,10 @@ class Views extends TableView {
176
<div className={tableStyles.content}>{content}</div>
177
</LoaderContainer>
178
{toolbar}
179
- <div className={tableStyles.headers} style={{ width: this.state.tableWidth }}>
+ <div
180
+ className={tableStyles.headers}
181
+ style={{ width: this.state.tableWidth, right: 'auto' }}
182
+ >
183
{headers}
184
</div>
185
{extras}
src/dashboard/Data/Views/Views.scss
@@ -1,5 +1,9 @@
1
@import 'stylesheets/globals.scss';
2
3
+.headers {
4
+ right: auto;
5
+}
6
+
7
.headerWrap {
8
display: inline-block;
9
vertical-align: top;
@@ -42,6 +46,7 @@
42
46
overflow: hidden;
43
47
text-overflow: ellipsis;
44
48
white-space: nowrap;
49
+ max-width: none;
45
50
}
51
52
.pointerLink {
0 commit comments