add: style blockquotes
This commit is contained in:
parent
8c5d8bf0ba
commit
b7b84d15b7
2 changed files with 12 additions and 1 deletions
|
@ -344,3 +344,9 @@ img.emoji {
|
||||||
height: 1em;
|
height: 1em;
|
||||||
aspect-ratio: 1 / 1;
|
aspect-ratio: 1 / 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
padding-left: 1rem;
|
||||||
|
border-left: solid 5px var(--color-super-lowered);
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
|
@ -68,7 +68,12 @@
|
||||||
(text "{% if stack.mode == 'Circle' -%}")
|
(text "{% if stack.mode == 'Circle' -%}")
|
||||||
(div
|
(div
|
||||||
("class" "flex w-full gap-2 flex-wrap")
|
("class" "flex w-full gap-2 flex-wrap")
|
||||||
(text "{% for user in stack.users %} {{ components::avatar(username=user, selector_type=\"id\", size=\"24px\") }} {% endfor %}"))
|
(text "{% for user in stack.users %}")
|
||||||
|
(a
|
||||||
|
("href" "/api/v1/auth/user/find/{{ user }}")
|
||||||
|
("class" "flush")
|
||||||
|
(text "{{ components::avatar(username=user, selector_type=\"id\", size=\"24px\") }}"))
|
||||||
|
(text "{% endfor %}"))
|
||||||
(text "{%- endif %}")
|
(text "{%- endif %}")
|
||||||
|
|
||||||
; posts for all stacks except blocklist
|
; posts for all stacks except blocklist
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue