[READ-ONLY] 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 labeler and feed avatar border radius

Grace Kind (Jul 22, 2026, 7:46 PM -0500) dab0e4d2 30a55574

+4 -3
+1 -1
package.json
··· 1 1 { 2 2 "name": "impro", 3 - "version": "0.18.48", 3 + "version": "0.18.49", 4 4 "type": "module", 5 5 "scripts": { 6 6 "start": "rm -rf \"${BUILD_DIR:-build}\" && NODE_ENV=development eleventy --serve",
+3 -2
src/css/style.css
··· 145 145 /* border radius */ 146 146 --skeleton-border-radius: 4px; 147 147 --tag-border-radius: 4px; 148 - --list-avatar-border-radius: 4px; 148 + --list-avatar-border-radius: 20%; 149 + --feed-avatar-border-radius: 20%; 149 150 --icon-button-border-radius: 4px; 150 151 --feed-feedback-inner-border-radius: 6px; 151 152 --text-input-border-radius: 8px; ··· 2672 2673 .feed-avatar { 2673 2674 width: 40px; 2674 2675 height: 40px; 2675 - border-radius: var(--embed-border-radius); 2676 + border-radius: var(--feed-avatar-border-radius); 2676 2677 object-fit: cover; 2677 2678 } 2678 2679