Add policies version history

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
Jonathan
2025-05-27 10:12:56 +02:00
committed by Sacha Al Himdani
parent abe0ce1dde
commit 2e6741942b
36 changed files with 1710 additions and 883 deletions

View File

@@ -0,0 +1,29 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
theme: {
extend: {
typography: () => ({
neutral: {
css: {
"--tw-prose-body": "var(--color-txt-secondary)",
"--tw-prose-headings": "var(--color-txt-primary)",
"--tw-prose-lead": "var(--color-txt-secondary)",
"--tw-prose-links": "var(--color-txt-secondary)",
"--tw-prose-bold": "var(--color-txt-secondary)",
"--tw-prose-counters": "var(--color-txt-secondary)",
"--tw-prose-bullets": "var(--color-txt-secondary)",
"--tw-prose-hr": "var(--color-txt-secondary)",
"--tw-prose-quotes": "var(--color-txt-secondary)",
"--tw-prose-quote-borders": "var(--color-txt-primary)",
"--tw-prose-captions": "var(--color-txt-secondary)",
"--tw-prose-code": "var(--color-txt-secondary)",
"--tw-prose-pre-code": "var(--color-txt-secondary)",
"--tw-prose-pre-bg": "var(--color-txt-secondary)",
"--tw-prose-th-borders": "var(--color-txt-secondary)",
"--tw-prose-td-borders": "var(--color-txt-secondary)",
},
},
}),
},
},
};