File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -59,4 +59,9 @@ export default css`
59
59
flex-wrap : wrap;
60
60
gap : 0.3em ;
61
61
}
62
+
63
+ .compact-col {
64
+ width : 1% ;
65
+ white-space : nowrap;
66
+ }
62
67
` ;
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ export class TopExceptionsTable extends LitElement {
101
101
< table >
102
102
< thead >
103
103
< tr >
104
- < th > # Sites</ th >
104
+ < th class =" compact-col " > # Sites</ th >
105
105
< th > Resource</ th >
106
106
< th > Detail</ th >
107
107
</ tr >
@@ -110,7 +110,7 @@ export class TopExceptionsTable extends LitElement {
110
110
${ this . topResources . map (
111
111
( topResource ) => html `
112
112
< tr >
113
- < td > ${ topResource . topLevelSites . size } </ td >
113
+ < td class =" compact-col " > ${ topResource . topLevelSites . size } </ td >
114
114
< td > ${ renderUrlPattern ( topResource . urlPattern ) } </ td >
115
115
< td >
116
116
< button
You can’t perform that action at this time.
0 commit comments