mirror of
https://github.com/openvk/openvk
synced 2024-11-15 03:31:18 +03:00
Fix wide avatars
This commit is contained in:
parent
eaaa454a45
commit
66852e4334
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ $(document).on("click", ".ignoredSourcesLink", (e) => {
|
|||
for(const a of ar.items) {
|
||||
document.querySelector(".ignorredList .list").insertAdjacentHTML("beforeend", `
|
||||
<div class="smolContent">
|
||||
<a href="${a.url}" target="_blank"><img style="float: left;" src="${a.avatar}"></a>
|
||||
<a href="${a.url}" target="_blank"><img style="float: left;width: 38px;height: 38px;object-fit: cover;" src="${a.avatar}"></a>
|
||||
<div style="float: left;margin-left: 6px;">
|
||||
<a href="${a.url}" target="_blank">${ovk_proc_strtr(escapeHtml(a.name), 12)}</a><br>
|
||||
<span>${ovk_proc_strtr(escapeHtml(a.additional), 40)}</span>
|
||||
|
|
Loading…
Reference in a new issue