~aw/fishbb

0ca5f9afc96c147af577e126974c919560e837f4 — alex wennerberg a month ago b155a48
fix bugs and target stylign
3 files changed, 7 insertions(+), 2 deletions(-)

M TODO
M gemtext.go
M views/style.css
M TODO => TODO +2 -1
@@ 6,8 6,9 @@ RESEARCH:
FEATURES:

minor/bugs:
notifications are just a search of mentions
rate limit registration

boring stuff:
better error handling on login
better ux for account creation
links on home and thread list should go to the post ( BETTER LINK  TO POST )

M gemtext.go => gemtext.go +1 -1
@@ 20,7 20,7 @@ func (p Post) BuildReply() string {
	// TODO link to post
	out.Write([]byte(fmt.Sprintf("@%s wrote:\n", p.Author.Username)))
	for _, line := range strings.Split(p.Content, "\n") {
		out.Write([]byte("> "))
		out.Write([]byte(">"))
		out.Write([]byte(line))
	}
	return out.String()

M views/style.css => views/style.css +4 -0
@@ 57,6 57,10 @@ button:not(.link-button) {
  background-color: var(--bg-alt);
}

:target blockquote {
  background-color: var(--bg);
}

.post-body {
  padding-left: 0.4rem;
  padding-right: 0.4rem;