Fixes bio spacing when there aren't paragraph tags (#39055)

This commit is contained in:
Echo 2026-05-18 10:45:43 +02:00 committed by GitHub
parent b946b8679d
commit cdf48e806d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -275,9 +275,14 @@ $button-fallback-breakpoint: $button-breakpoint + 55px;
font-size: 15px;
color: var(--color-text-primary);
unicode-bidi: plaintext;
display: flex;
flex-direction: column;
gap: 20px;
p {
margin-bottom: 20px;
&:last-child {
margin-bottom: 0;
}
}
:any-link {
color: var(--color-text-status-links);