#Stylize the user account appear
1 messages · Page 1 of 1 (latest)
yeah sometimes it can be a little slow if there’s a lot of channel elements on screen
should be better if you delete the blur part
yeah if you just want the animation you can delete the blur part
or i can delete it for you
.accountProfilePopoutWrapper_af829a {left: 708px; top: 50px;}
.accountProfilePopoutWrapper_af829a {
animation: 0.5s ease-out slide;
}
@keyframes slide {
from {
transform: translate(0, -1600px);
}
to {
transform: translate(0, 0px);
}
}```
this isn't really centered lol
yeah i still need to find a way to make it centered relative to monitor size
centers well for 1920x1080
just use margin auto
not bad but you could use the transition property
blur moment
never really thought of that, i’ll try it
that does NOT work
if its positioned absolute you may need to use the top: 50% left:50% transform: translate(-50%,-50%) trick
by default its positioned relative
set it to position absolute then
position relative is hard to work with because its relative
doesnt really work out well
.accountProfilePopoutWrapper_af829a {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: 0.5s ease-out animate;
}
.layerContainer_d5a653:has([class^="userPopoutOuter_"]) {
backdrop-filter: blur(10px) !important;
transition: backdrop-filter 0.5s ease-out;
}
@keyframes animate {
from {
transform: translate(-50%, -500%);
}
to {
transform: translate(-50%, -50%);
}
}```
position fixed is better