diff --git a/src/globals.css b/src/globals.css new file mode 100644 index 0000000..f598f80 --- /dev/null +++ b/src/globals.css @@ -0,0 +1,3 @@ +.refine-list-button { + display: none !important; +} diff --git a/src/index.tsx b/src/index.tsx index b3c802b..bc97292 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2,6 +2,7 @@ import React from 'react' import {createRoot} from 'react-dom/client' import App from './App' +import './globals.css' const container = document.getElementById('root') as HTMLElement const root = createRoot(container)