Update table borders to use lighter grey instead of black

Replace black ring border with lighter zinc-200/zinc-700 border on all
tables for better visual consistency across the application. Also update
tbody dividers to match the new border styling.
This commit is contained in:
Graham McIntire 2026-01-15 13:32:09 -06:00
parent ab6ecbdfdc
commit 85abdedf8b
No known key found for this signature in database

View file

@ -433,8 +433,8 @@ defmodule ToweropsWeb.CoreComponents do
end
~H"""
<div class="overflow-hidden shadow ring-1 ring-black ring-opacity-5 rounded-lg">
<table class="min-w-full divide-y divide-zinc-300 dark:divide-zinc-700">
<div class="overflow-hidden rounded-lg border border-zinc-200 dark:border-zinc-700">
<table class="min-w-full divide-y divide-zinc-200 dark:divide-zinc-700">
<thead class="bg-zinc-50 dark:bg-zinc-900">
<tr>
<th
@ -451,7 +451,7 @@ defmodule ToweropsWeb.CoreComponents do
<tbody
id={@id}
phx-update={is_struct(@rows, Phoenix.LiveView.LiveStream) && "stream"}
class="divide-y divide-zinc-200 bg-white dark:divide-zinc-800 dark:bg-zinc-950"
class="divide-y divide-zinc-200 bg-white dark:divide-zinc-700 dark:bg-zinc-950"
>
<tr
:for={row <- @rows}