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 } };