From f1248eb4af55702ef78eba790c59854c336235d5 Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Wed, 28 Jun 2023 15:37:03 +0200 Subject: [PATCH] fix(ui): revert preflight styles from tailwind --- frontend/app/styles/global.scss | 8 ++++++++ frontend/tailwind.config.js | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/frontend/app/styles/global.scss b/frontend/app/styles/global.scss index b8df873a9..1af0a6664 100644 --- a/frontend/app/styles/global.scss +++ b/frontend/app/styles/global.scss @@ -26,3 +26,11 @@ input.no-focus:focus { .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 6839bc5ee..1fd4f8bd4 100644 --- a/frontend/tailwind.config.js +++ b/frontend/tailwind.config.js @@ -42,6 +42,6 @@ module.exports = { }, plugins: [], corePlugins: { - preflight: false + // preflight: false // TODO check for the conflicts with antd } };