From 132f1f0c6166426f1e9ff66ef4c4b43674ceb90a Mon Sep 17 00:00:00 2001 From: Shane Melton Date: Fri, 29 Jul 2022 10:31:54 -0700 Subject: [PATCH] [EC-8] Extend maxWidth Tailwind theme config --- apps/web/src/app/reports/report-card.component.html | 2 +- libs/components/tailwind.config.base.js | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/web/src/app/reports/report-card.component.html b/apps/web/src/app/reports/report-card.component.html index 138a9b6a687..771d1553df4 100644 --- a/apps/web/src/app/reports/report-card.component.html +++ b/apps/web/src/app/reports/report-card.component.html @@ -1,5 +1,5 @@ diff --git a/libs/components/tailwind.config.base.js b/libs/components/tailwind.config.base.js index 31ff19cb501..2e2615ff27f 100644 --- a/libs/components/tailwind.config.base.js +++ b/libs/components/tailwind.config.base.js @@ -68,6 +68,9 @@ module.exports = { DEFAULT: theme("colors.background"), ...theme("colors"), }), + maxWidth: ({ theme }) => ({ + ...theme("width"), + }), }, plugins: [], };