From 90ae4926797bb4609569f4c3b296a4a2b091a899 Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Thu, 24 Apr 2025 15:54:46 -0300 Subject: [PATCH] feat(tailwind,blog): default style for tables --- assets/stylesheets/tailwind.css | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/assets/stylesheets/tailwind.css b/assets/stylesheets/tailwind.css index 730e42e..09418eb 100644 --- a/assets/stylesheets/tailwind.css +++ b/assets/stylesheets/tailwind.css @@ -122,18 +122,28 @@ } } - details { + table { + table-layout: auto; + width: 100%; + border-radius: 1rem; + + thead { + background-color: #111; + } + + th, + td { + border: 1px solid #111; + padding: 0.5rem; + } + } + margin: 1rem 0 1rem 0; background-color: #111; - padding: 1.5rem; - border-radius: 1rem; } hr { color: #181818; } -} -@theme { - --font-sans: "Karla", sans-serif; }