From 29c73d992cf47f8a1bcab10639eac958b1bdcf18 Mon Sep 17 00:00:00 2001 From: Theo Sanderson Date: Wed, 22 May 2024 14:29:36 +0100 Subject: [PATCH] Update mdcontainer.scss (#2005) --- website/src/styles/mdcontainer.scss | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/website/src/styles/mdcontainer.scss b/website/src/styles/mdcontainer.scss index a04d0adea7..d22d1ef12c 100644 --- a/website/src/styles/mdcontainer.scss +++ b/website/src/styles/mdcontainer.scss @@ -94,3 +94,19 @@ list-style-type: lower-roman; } +.mdContainer table { + @apply w-full table-auto border-collapse mt-6 mb-6; +} + +.mdContainer th, +.mdContainer td { + @apply border border-gray-300 px-4 py-2 text-left border-solid; +} + +.mdContainer th { + @apply bg-gray-100 font-semibold; +} + +.mdContainer tbody tr:nth-child(even) { + @apply bg-gray-50; +}