From ad67ceb0628a094ca193f530034b70acbf62418c Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Wed, 1 Jan 2025 22:27:03 +0100 Subject: [PATCH] design: remove margin for li and remove a little bit of line height to make them closer to each other --- tailwind.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tailwind.config.js b/tailwind.config.js index 6afefff..75d1f5e 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -30,7 +30,7 @@ module.exports = { typography: () => ({ DEFAULT: { css: { - 'font-size': '12pt', + 'font-size': '13pt', 'font-family': '"Courier Prime", monospace', ...defaultTitleStyles, p: { @@ -49,6 +49,10 @@ module.exports = { }, 'a:hover': { 'text-decoration': 'underline' + }, + li: { + 'margin-top': 0, + 'margin-bottom': 0 } } }