[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 new chat dialog styles

Grace Kind (Jul 9, 2026, 2:45 PM -0500) 2ab1aa56 348c38af

+22 -2
+1 -1
package.json
··· 1 1 { 2 2 "name": "impro", 3 - "version": "0.17.119", 3 + "version": "0.17.120", 4 4 "type": "module", 5 5 "scripts": { 6 6 "start": "rm -rf \"${BUILD_DIR:-build}\" && NODE_ENV=development eleventy --serve",
+21 -1
src/css/style.css
··· 8715 8715 } 8716 8716 } 8717 8717 8718 + @media (max-width: 799px) { 8719 + .new-chat-dialog { 8720 + top: 16px; 8721 + max-height: calc(100vh - 16px); 8722 + display: flex; 8723 + flex-direction: column; 8724 + } 8725 + 8726 + .new-chat-dialog-content { 8727 + flex: 1; 8728 + min-height: 0; 8729 + } 8730 + 8731 + .new-chat-results { 8732 + flex: 1; 8733 + height: auto; 8734 + min-height: 0; 8735 + } 8736 + } 8737 + 8718 8738 @media (min-width: 800px) { 8719 8739 .new-chat-dialog { 8720 8740 max-width: 480px; ··· 8868 8888 } 8869 8889 8870 8890 .new-chat-result-handle { 8871 - color: var(--text-color-secondary); 8891 + color: var(--text-color-muted); 8872 8892 font-size: 0.9rem; 8873 8893 overflow: hidden; 8874 8894 text-overflow: ellipsis;