From 3243fe6229c434eb9b5ea75afcd736ac2bbad8a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20P=C4=99dzich?= Date: Wed, 18 Jan 2023 22:19:27 +0100 Subject: [PATCH] Add global styling rules for data tables --- src/styles/global.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/styles/global.css b/src/styles/global.css index c5eeede..2209c08 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -18,6 +18,25 @@ li > a { @apply hover:text-inherit focus:text-primary-content focus:bg-primary; } +#snapshot-tracklist th, +#snapshot-tracklist tr, +#snapshot-tracklist td { + @apply border-base-content border-opacity-20; +} + +#snapshot-tracklist th { + @apply rounded-none; +} + +#snapshot-tracklist tr { + @apply border-b-[1px]; +} + +#snapshot-tracklist th, +#snapshot-tracklist td { + @apply border-r-[1px]; +} + .search-suggestion { @apply block p-3 text-inherit border-b-[1px] border-solid border-base-content border-opacity-20; }