Make slight markup and styling changes

This commit is contained in:
Adrian Gruntkowski 2024-09-24 12:25:35 +02:00
parent 1d4bf1178b
commit 5f57a0cb3d

View File

@ -42,16 +42,17 @@ defmodule PlausibleWeb.HelpScoutView do
<p class="label">
Owner of <b><a href={@sites_link} target="_blank"><%= @sites_count %> sites</a></b>
</p>
<p class="value"></p>
</div>
<div :if={@notes} class="notes">
<p class="label">
Notes
<b>Notes</b>
</p>
<p class="value">
<div class="value">
<%= Phoenix.HTML.Format.text_to_html(@notes, escape: true) %>
</p>
</div>
</div>
<% end %>
</.layout>
@ -150,6 +151,10 @@ defmodule PlausibleWeb.HelpScoutView do
margin-bottom: 1.25em;
font-weight: bold;
}
.notes .value {
font-weight: normal;
}
</style>
</head>