Profile: fix link color
All checks were successful
/ depoly (push) Successful in 1m19s

This commit is contained in:
thislight 2024-10-29 19:48:15 +08:00
parent 6b889666ad
commit da32969f5a
No known key found for this signature in database
GPG key ID: A50F9451AC56A63E

View file

@ -116,6 +116,13 @@ const Profile: Component = () => {
gap: 16px;
}
.description {
& :global(a) {
color: inherit;
font-style: italic;
}
}
.acct-grp {
display: flex;
flex-flow: row wrap;
@ -310,6 +317,7 @@ const Profile: Component = () => {
</div>
</div>
<div
class="description"
ref={(e) =>
createRenderEffect(() => (e.innerHTML = description() || ""))
}