From 20b84ee6a15984f3c4f914590835027049294491 Mon Sep 17 00:00:00 2001 From: Pranav Raj S Date: Mon, 26 Jun 2023 14:43:22 -0700 Subject: [PATCH] chore: Fix darkMode styles in widget (#7408) --- tailwind.config.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index 2a96a4875..e83e92d90 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,5 +1,5 @@ module.exports = { - dark: 'class', + darkMode: 'class', content: [ './app/javascript/widget/**/*.vue', './app/javascript/portal/**/*.vue', @@ -90,11 +90,6 @@ module.exports = { }, body: '#2f3b49', }, - extend: { - screens: { - dark: { raw: '(prefers-color-scheme: dark)' }, - }, - }, }, plugins: [ // eslint-disable-next-line