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

Configure Feed

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

Update thin border styles

Grace Kind (May 3, 2026, 10:21 PM -0500) c96925e0 c35cf719

+7 -14
+1 -1
package.json
··· 1 1 { 2 2 "name": "impro", 3 - "version": "0.11.49", 3 + "version": "0.11.50", 4 4 "type": "module", 5 5 "scripts": { 6 6 "start": "rm -rf build && NODE_ENV=development eleventy --serve",
+6 -13
src/css/style.css
··· 256 256 color: inherit; 257 257 } 258 258 259 - /* a:hover { 260 - text-decoration: none; 261 - color: inherit; 262 - } */ 263 - /* a:visited { 264 - color: inherit; 265 - } */ 266 - 267 259 hr { 268 - border-bottom: var(--hair) solid var(--post-border-color); 269 - border-top: none; 270 - border-right: none; 271 - border-left: none; 260 + border: none; 261 + height: var(--hair); 262 + background-color: var(--post-border-color); 272 263 } 273 264 274 265 /* visually hide alt text */ ··· 1447 1438 width: 100%; 1448 1439 max-width: 100%; 1449 1440 box-sizing: border-box; 1450 - border-bottom: var(--hair) solid var(--post-border-color); 1441 + /* use box-shadow because border renders inconsistently on ios safari */ 1442 + box-shadow: 0 var(--hair) 0 var(--post-border-color); 1443 + margin-bottom: var(--hair); 1451 1444 } 1452 1445 1453 1446 .post-list {