mirror of
https://github.com/danbulant/Nertivia-Client
synced 2026-06-24 17:11:43 +00:00
missed friends template
This commit is contained in:
parent
804f5518a5
commit
22c13e894f
1 changed files with 11 additions and 8 deletions
|
|
@ -8,13 +8,13 @@
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="profile-picture"
|
class="profile-picture"
|
||||||
:style="
|
:style="`border-color: ${status.statusColor};`"
|
||||||
`border-color: ${
|
|
||||||
status.statusColor
|
|
||||||
}; background-image: url(${userAvatar}${hover || !isGif ? '' : '?type=webp'})`
|
|
||||||
"
|
|
||||||
@click="openUserInformation"
|
@click="openUserInformation"
|
||||||
>
|
>
|
||||||
|
<img
|
||||||
|
class="avatar"
|
||||||
|
:src="`${userAvatar}${hover || !isGif ? '' : '?type=webp'}`"
|
||||||
|
/>
|
||||||
<div
|
<div
|
||||||
class="status"
|
class="status"
|
||||||
:style="`background-image: url(${status.statusURL})`"
|
:style="`background-image: url(${status.statusURL})`"
|
||||||
|
|
@ -179,12 +179,15 @@ export default {
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
border: solid 2px;
|
border: solid 2px;
|
||||||
position: relative;
|
position: relative;
|
||||||
background-position: center;
|
|
||||||
background-size: cover;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
transition: 0.3s;
|
transition: 0.3s;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
.avatar {
|
||||||
|
height: 30px;
|
||||||
|
width: 30px;
|
||||||
|
border-radius: 50%;
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
.information {
|
.information {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue