diff --git a/source/css/atoms/table.pcss b/source/css/atoms/table.pcss index b307692e438ec7571d5aee01ba2874bb83a3f69c..17b8a8b7ca040b41d62710af47361bc79c41a89f 100644 --- a/source/css/atoms/table.pcss +++ b/source/css/atoms/table.pcss @@ -12,6 +12,13 @@ } } +.table--light { + th, + thead td { + @apply bg-transparent text-black; + } +} + .table--striped, .content-block table { tr:nth-child(even) td { @@ -38,3 +45,12 @@ @apply p-2; } } + + +.table--unxpadded { + th, + thead td, + td { + @apply px-0; + } +}