diff --git a/crates/app/src/public/html/components.lisp b/crates/app/src/public/html/components.lisp index 8ce9a8a..a9ca936 100644 --- a/crates/app/src/public/html/components.lisp +++ b/crates/app/src/public/html/components.lisp @@ -978,7 +978,7 @@ (text "{{ icon \"music\" }}") (span (b - (text "Listening to")) + (text "Listening to ")) (text "{{ other_user.connections.LastFm[1].data.artist }}"))) (text "{% elif other_user.connections.Spotify[0].data.name and other_user.connections.Spotify[1].data and other_user.connections.Spotify[1].data.track %}") @@ -987,7 +987,7 @@ (text "{{ icon \"music\" }}") (span (b - (text "Listening to")) + (text "Listening to ")) (text "{{ other_user.connections.Spotify[1].data.artist }}"))) (text "{%- endif %} {%- endmacro %} {% macro user_plate(user, show_menu=false, show_kick=false, secondary=false) -%}") diff --git a/crates/app/src/public/html/mod/stats.lisp b/crates/app/src/public/html/mod/stats.lisp index aea04e8..65e895d 100644 --- a/crates/app/src/public/html/mod/stats.lisp +++ b/crates/app/src/public/html/mod/stats.lisp @@ -17,17 +17,17 @@ (ul (li (b - (text "Active user streams:")) + (text "Active user streams: ")) (span (text "{{ active_users }}"))) (li (b - (text "Active chat subscriptions:")) + (text "Active chat subscriptions: ")) (span (text "{{ active_users_chats }}"))) (li (b - (text "Socket tasks:")) + (text "Socket tasks: ")) (span (text "{{ (active_users_chats + active_users) * 3 }}"))))))) diff --git a/crates/app/src/public/html/profile/outbox.lisp b/crates/app/src/public/html/profile/outbox.lisp index 97efc2d..98ac644 100644 --- a/crates/app/src/public/html/profile/outbox.lisp +++ b/crates/app/src/public/html/profile/outbox.lisp @@ -14,7 +14,7 @@ (span (text "{{ text \"auth:label.outbox\" }}")))) (div - ("class" "card tertiary flex flex-col gap-4") + ("class" "card flex flex-col gap-4") (text "{% for question in questions %}") (div ("class" "card-nest")