Replace px units

This commit is contained in:
Claudio Ortolina
2026-02-19 10:40:44 +00:00
parent facb7359c1
commit dd20aaf60d
2 changed files with 3 additions and 3 deletions
@@ -449,10 +449,10 @@ defmodule MusicLibraryWeb.RecordComponents do
def record_colors(assigns) do
~H"""
<span class="inline-flex items-end gap-0.5 w-[22px] h-3.5">
<span class="inline-flex items-end gap-0.5 w-5.5 h-3.5">
<span
:for={{color, i} <- Enum.with_index(@record.dominant_colors)}
class="w-[3px] rounded-sm animate-equalizer-bar"
class="w-0.75 rounded-sm animate-equalizer-bar"
style={"background-color: #{color}; animation-delay: #{i * -0.45}s"}
>
</span>
@@ -13,7 +13,7 @@
<h3 class="text-lg font-semibold">{gettext("Release Groups")}</h3>
<ul class={[
"mt-5 divide-y divide-zinc-100 dark:divide-slate-300/30",
"max-h-[500px] overflow-y-auto"
"max-h-125 overflow-y-auto"
]}>
<li
:for={release_group <- @search_results}