From 6c93cbe2b096bed3a9bbbfd5c4c9bbbc2551af9f Mon Sep 17 00:00:00 2001 From: waltem01 Date: Fri, 24 Nov 2023 10:20:05 +0100 Subject: [PATCH] custom spacing --- Webserver/tailwind.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Webserver/tailwind.config.js b/Webserver/tailwind.config.js index bfe0bc2..1cb5f5d 100644 --- a/Webserver/tailwind.config.js +++ b/Webserver/tailwind.config.js @@ -2,7 +2,11 @@ export default { content: ['./src/**/*.{html,js,svelte,ts}'], theme: { - extend: {} + extend: { + spacing: { + 0.75: '0.1875rem' + } + } }, plugins: [] };