Changed border radius to 100% instead of 5000px to make animation work and changed width and height of pfp img to inherit pfp a and nade pfp a have 150px w & h

This commit is contained in:
Richard Mikloš 2024-02-03 13:55:29 +01:00
parent 5bf66942a6
commit 4053b31b2f

@ -1,6 +1,7 @@
.big-pfp { .big-pfp {
margin: 0; margin: 0;
width: fit-content; width: 150px;
height: 150px;
overflow: hidden; overflow: hidden;
transition-duration: 0.3s; transition-duration: 0.3s;
} }
@ -11,7 +12,8 @@
} }
.big-pfp img { .big-pfp img {
width: 150px; width: inherit;
border-radius: 5000px; height: inherit;
border-radius: 100%;
transition-duration: 0.3s; transition-duration: 0.3s;
} }