ssb: Remove some extra margin that slipped in.
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 31m13s

This commit is contained in:
Cory McWilliams 2025-04-27 09:53:24 -04:00
parent 1a4d1985f4
commit bdfd8925b5
3 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,5 @@
{ {
"type": "tildefriends-app", "type": "tildefriends-app",
"emoji": "🦀", "emoji": "🦀",
"previous": "&S+Ua+2iyQswtMDw9PbxP4sUjxUTGPzONK8nPFCjOMLc=.sha256" "previous": "&+Hv0lBH8OyyJq/ENWIGw1kpq3zrl56hqophb9vrekjk=.sha256"
} }

View File

@ -687,7 +687,9 @@ class TfMessageElement extends LitElement {
@click=${(x) => this.toggle_expanded(':cw')} @click=${(x) => this.toggle_expanded(':cw')}
> >
<p>${content.contentWarning}</p> <p>${content.contentWarning}</p>
<p class="w3-small">${this.is_expanded(':cw') ? 'Show less' : 'Show more'}</p> <p class="w3-small">
${this.is_expanded(':cw') ? 'Show less' : 'Show more'}
</p>
</div> </div>
`; `;
let content_html = html` let content_html = html`

View File

@ -224,7 +224,7 @@ class TfTabNewsElement extends LitElement {
)} )}
<a class="w3-bar-item w3-theme-d2 w3-button" href="#connections"> <a class="w3-bar-item w3-theme-d2 w3-button" href="#connections">
<h4>Connections</h4> <h4 style="margin: 0">Connections</h4>
</a> </a>
${this.connections ${this.connections
.filter((x) => x.id && !x.destroy_reason) .filter((x) => x.id && !x.destroy_reason)