apps/web: fix antd breaks webkit-scroll style override

This commit is contained in:
vchikalkin 2024-02-28 15:08:39 +03:00
parent 450ed01d00
commit b74f919939
2 changed files with 5 additions and 0 deletions

View File

@ -1,6 +1,7 @@
import 'normalize.css';
import '../styles/fonts.css';
import '../styles/globals.css';
import '../styles/antd-fix.css';
import initializeQueryClient from '@/api/client';
import initializeApollo from '@/apollo/client';
import { Notification } from '@/Components/Common/Notification';

View File

@ -0,0 +1,4 @@
/* fix antd tables override scroll style */
.ant-table {
scrollbar-color: unset !important;
}