We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04bcca3 commit 7941c85Copy full SHA for 7941c85
lib/algora_web/live/org/home_live.ex
@@ -71,10 +71,15 @@ defmodule AlgoraWeb.Org.HomeLive do
71
<div class="flex-1 space-y-2">
72
<div>
73
<h1 class="text-2xl font-bold">{@org.name}</h1>
74
- <p class="mt-1 text-muted-foreground">{@org.bio}</p>
+ <div
75
+ class="mt-1 text-muted-foreground max-w-none whitespace-pre-line [&_p]:m-0 prose prose-invert"
76
+ style="margin-top: -28px;"
77
+ >
78
+ {Phoenix.HTML.raw(Algora.Markdown.render(@org.bio))}
79
+ </div>
80
</div>
81
- <div class="flex gap-4 items-center">
82
+ <div class="flex gap-4 items-center" style="margin-top: -28px;">
83
<%= for {platform, icon} <- social_links(),
84
url = social_link(@org, platform),
85
not is_nil(url) do %>
0 commit comments