From 4ed47f09fd68183f794aa43bf9709f9d0687c0ec Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Wed, 28 Jun 2023 17:59:13 +0200 Subject: [PATCH] fix(ui): revert preflight styles from tailwind --- frontend/app/styles/global.scss | 12 ------------ frontend/tailwind.config.js | 4 +--- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/frontend/app/styles/global.scss b/frontend/app/styles/global.scss index 1af0a6664..c25d0cc7b 100644 --- a/frontend/app/styles/global.scss +++ b/frontend/app/styles/global.scss @@ -22,15 +22,3 @@ input.no-focus:focus { @apply inline-block; } } - -.border-b { - border-bottom: 1px solid #eee; -} - -button, -[type='button'], -[type='reset'], -[type='submit'] { - background-color: unset; - -webkit-appearance: button; -} diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js index 1fd4f8bd4..a5d695c43 100644 --- a/frontend/tailwind.config.js +++ b/frontend/tailwind.config.js @@ -41,7 +41,5 @@ module.exports = { visibility: ['responsive', 'hover', 'focus', 'group-hover'] }, plugins: [], - corePlugins: { - // preflight: false // TODO check for the conflicts with antd - } + corePlugins: {} };