File tree 2 files changed +29
-2
lines changed
2 files changed +29
-2
lines changed Original file line number Diff line number Diff line change @@ -19,13 +19,13 @@ async function patch(bg) {
19
19
const { shorthand } = team ;
20
20
const abslveLink = `https://slavfox.space/abslve/?foreboding-kaleidoscope#${ shorthand } ` ;
21
21
22
- let logoLine = item . querySelector ( '.Team-LogoLine' ) ;
22
+ let logoLine = item . querySelector ( '.Team-LogoLine-Wrapper ' ) ;
23
23
24
24
let abslve = document . createElement ( 'a' ) ;
25
25
abslve . href = abslveLink ;
26
26
abslve . textContent = 'abslve' ;
27
27
abslve . classList . add ( 'Team-Abslve' ) ;
28
- logoLine . append ( abslve ) ;
28
+ logoLine . after ( abslve ) ;
29
29
30
30
markPatched ( item , 'abslveLink' ) ;
31
31
markPatched ( bg , 'abslveLink' ) ;
Original file line number Diff line number Diff line change
1
+ .Team-Header {
2
+ display : grid;
3
+ grid-template-columns : min-content 1fr min-content;
4
+ align-items : start;
5
+ column-gap : 5px ;
6
+ }
7
+
8
+ .Team-LogoLine-Wrapper , .Team-Card-Wrapper , .Team-Header > .ModalItem-Name-Wrapper {
9
+ display : contents;
10
+ }
11
+
12
+ .Team-LogoLine-Wrapper > .ModalItem-Name-Wrapper {
13
+ grid-column : 2 / 4 ;
14
+ margin-left : 5px ;
15
+ }
16
+
17
+ .Team-Card {
18
+ grid-column : 2 ;
19
+ margin : 0.5px 0 0 0 ;
20
+ }
21
+
22
+ .ModalItem-Button-Flute-Current {
23
+ margin-left : 0 ;
24
+ margin-right : -5px ;
25
+ }
26
+
1
27
.Team-Abslve {
2
28
font-family : "Lora" , "Courier New" , monospace, serif;
3
29
font-size : 14px ;
4
30
color : # aaa ;
5
31
line-height : 1.3em ;
6
32
margin-top : 2px ;
33
+ justify-self : center;
7
34
}
8
35
9
36
.Player-Info-Line-Button {
You can’t perform that action at this time.
0 commit comments