#Viggy loading screen
1 messages ยท Page 1 of 1 (latest)
the video I sent initally was stupid laggy so I re-recorded it, but I can't upload it without resending the snippet
Change url to https://media.discordapp.net/stickers/1039992459209490513.png?size=320 for shiggy
if only u could edit messages on this god forsaken app ๐
@spice sandal
[class*=content]:has(> video[class*="ready"]) {
position: relative;
&::after {
content: '';
position: absolute;
top: 0px;
left: 0px;
translate: 25%;
width: 200px;
height: 180px;
background-image: url('https://media.discordapp.net/stickers/1217112512374505613.png?size=320') !important;
background: center/contain no-repeat;
}
video { visibility: hidden; }
}
How's that feel? (continuing a convo from diff thread)
honestly seems fine but that's just a ctrl+r
yeah still loads fine on my end
so your stuff will prolly be fine
oh huh... but then again maybe it's a pc language thing
Looking over your changes I realized that translate is supposed to only apply to X and not Y.
I fucked that up and thats why height is 180 instead of 200

honestly didnt notice that
could easily collapse those then
good example of that happening, neat
We need an update on this
[class*=content]:has(> video[data-testid="app-spinner"]) {
position: relative;
&::after {
content: '';
position: absolute;
top: 0px;
left: 0px;
translate: 25%;
width: 200px;
height: 180px;
background-image: url('https://media.discordapp.net/stickers/1217112512374505613.png?size=320') !important;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
video { visibility: hidden; }
}
this works for me :3
on vesktop at least it ends up misaligned half the time
this worked for me
[class^=content]:has(> video[data-testid="app-spinner"]) {
position: relative;
&::before {
content: '';
position: absolute;
top: 0;
left: 20px;
width: 180px;
height: 200px;
background-image: url('https://media.discordapp.net/stickers/1217112512374505613.png?size=320') !important;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
video { visibility: hidden; }
div[class^=text_] { top: 20px; }
}```
could prolly have it remade with rem or vw values maybe 
possible that's just a difference of monitor ratios
that used to work for me but now it doesn't anymore, it's once again misaligned...
and now it's sadly broken 
found an alternative css and managed to adjust it to work with Viggy here: #1352215311369375845 message
aaand the new update broke it, fantastic 