Allows you to use Mastodon and Bluesky comments on your Lustre blog hexdocs.pm/chilp/
blog gleam lustre indieweb mastodon bluesky comments
1
fork

Configure Feed

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

fix: prevent the buttons from overflowing on smaller screens. flex-wrap: wrap; added to the css

+4 -2
+2 -2
NOTES.md
··· 3 3 To do for this release: 4 4 - [ ] [feat] Adding multiple back-ends 5 5 - [ ] Bluesky, including a "[Comment via Bluesky]" button, and fetching comments from Bluesky posts in Bluesky-only mode or in a mixed mode with Mastodon. 6 - - [ ] ~~GitHub issues, including a "[Comment via GitHub]" button.~~ For a later release, as this will require a lot of work to implement the GraphQL queries and mutations. 6 + - [x] ~~GitHub issues, including a "[Comment via GitHub]" button.~~ For a later release, as this will require a lot of work to implement the GraphQL queries and mutations. 7 7 - [ ] Other platforms? Maybe? Depends on how much time I have, and how much demand there is for other platforms. 8 - - [ ] [fix] Adding `flex-wrap: wrap;` to `.widget .form-controls` to prevent the buttons from overflowing on smaller screens. 8 + - [x] [fix] Adding `flex-wrap: wrap;` to `.widget .form-controls` to prevent the buttons from overflowing on smaller screens. 9 9 10 10 ## [feat] Adding multiple back-ends 11 11
+1
README.md
··· 162 162 .form-controls { 163 163 display: flex; 164 164 width: 100%; 165 + flex-wrap: wrap; 165 166 } 166 167 167 168 .go-reply-form-button {
+1
src/chilp/widget.gleam
··· 233 233 .form-controls { 234 234 display: flex; 235 235 width: 100%; 236 + flex-wrap: wrap; 236 237 } 237 238 238 239 .go-reply-form-button {