diff --git a/eleventy.config.js b/eleventy.config.js index 0b53bda..40da91c 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -149,12 +149,6 @@ module.exports = function (eleventyConfig) { return new Date().toISOString(); }); - eleventyConfig.addShortcode("fileContent", (inputPath, fileName) => { - const directory = path.dirname(inputPath); - const fullPath = path.join(directory, "files", fileName); - return fs.readFileSync(fullPath); - }); - // Features to make your build faster (when you need them) // If your passthrough copy gets heavy and cumbersome, add this line diff --git a/public/css/tailwind.css b/public/css/tailwind.css index 032031d..38eed60 100644 --- a/public/css/tailwind.css +++ b/public/css/tailwind.css @@ -1664,10 +1664,6 @@ h4 { width: 100vw; } -.min-w-full { - min-width: 100%; -} - .max-w-4xl { max-width: 56rem; } @@ -3774,14 +3770,6 @@ code { width: 20rem; } - .md\:min-w-0 { - min-width: 0px; - } - - .md\:max-w-prose { - max-width: 65ch; - } - .md\:flex-1 { flex: 1 1 0%; }