mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
24 lines
427 B
CSS
24 lines
427 B
CSS
.userInfoImg {
|
|
width: 80%;
|
|
height: 80%;
|
|
position: absolute;
|
|
top: 10%;
|
|
left: 10%;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
z-index: 4;
|
|
box-shadow: 0 0 0 3px #000000;
|
|
transition: box-shadow 0.05s ease-in-out;
|
|
}
|
|
|
|
.dark .userInfoImg {
|
|
box-shadow: 0 0 0 3px #ffffff;
|
|
transition: box-shadow 0.05s ease-in-out;
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.userInfoImg {
|
|
transition: none !important;
|
|
}
|
|
}
|