Mirror of https://github.com/improsocial/impro An extensible Bluesky client for web impro.social
6

Configure Feed

Select the types of activity you want to include in your feed.

Update account switcher avatar styles

Grace Kind (Jul 17, 2026, 5:02 PM -0500) 2630c353 d4d146a7

+15 -10
+14 -4
src/css/style.css
··· 5387 5387 background: var(--post-hover-color); 5388 5388 } 5389 5389 } 5390 - /* 5391 - .profile-list-item:last-of-type { 5392 - border-bottom: none; 5393 - } */ 5390 + 5391 + /* This element fixes a weird bug on iOS safari 5392 + where the chatDetail page would render extra slowly. 5393 + I don't know why it works, but it does. */ 5394 + .hack-x { 5395 + color: transparent; 5396 + } 5394 5397 5395 5398 .profile-list-item-body { 5396 5399 flex: 1; ··· 7558 7561 } 7559 7562 7560 7563 .settings-account-avatar-stack .avatar { 7564 + width: 24px; 7565 + height: 24px; 7561 7566 margin-left: -8px; 7562 7567 } 7563 7568 ··· 7577 7582 width: 100%; 7578 7583 height: 100%; 7579 7584 object-fit: cover; 7585 + } 7586 + 7587 + .settings-account-row .vertical-nav-icon .avatar { 7588 + width: 26px; 7589 + height: 26px; 7580 7590 } 7581 7591 7582 7592 .settings-account-row .vertical-nav-icon .avatar .avatar-image-frame {
+1 -6
src/js/templates/avatar.template.js
··· 65 65 "labeler-avatar": isLabeler, 66 66 })} 67 67 > 68 - <!-- 69 - This single character fixes a weird bug on iOS safari 70 - where the chatDetail page would render extra slowly. 71 - I don't know why it works, but it does. 72 - Since line height is zero, it shouldn't be visible on the page. --> 73 - x 68 + <span class="hack-x">x</span> 74 69 <img 75 70 src="${avatarThumbnailUrl}" 76 71 alt="${author.displayName} profile picture"