File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -87,9 +87,9 @@ function GroupConclusionContent({
87
87
if ( conclusion !== GroupedJobStatus . Failure || ! monsterFailures ) {
88
88
return (
89
89
< span
90
- className = {
90
+ className = { ` ${ styles . conclusion } ${
91
91
isClassified ? styles [ "classified" ] : styles [ conclusion ?? "none" ]
92
- }
92
+ } ` }
93
93
onDoubleClick = { toggleExpanded }
94
94
style = { {
95
95
border : "1px solid gainsboro" ,
@@ -143,7 +143,7 @@ function GroupConclusionContent({
143
143
144
144
return (
145
145
< span
146
- className = { styles . monster_with_count }
146
+ className = { ` ${ styles . monster_with_count } ${ styles . conclusion } ` }
147
147
onDoubleClick = { toggleExpanded }
148
148
title = { `${ allMonsters . length } unique failure ${
149
149
allMonsters . length === 1 ? "type" : "types"
Original file line number Diff line number Diff line change 2
2
font-family : monospace;
3
3
font-size : 1rem ;
4
4
font-weight : bold;
5
+ display : inline-block;
6
+ width : 14px ;
7
+ text-align : center;
5
8
}
6
9
7
10
.classified {
23
26
background-size : 152px 426px ; /* total size of the spritesheet (downscaled 1.5x) */
24
27
display : inline-block;
25
28
vertical-align : middle;
26
- margin-left : 2 px ;
29
+ margin-left : 0 ;
27
30
image-rendering : pixelated;
28
31
}
29
32
You can’t perform that action at this time.
0 commit comments