Skip to content

Commit ba3b36a

Browse files
authored
fix: incorrect slider style order (#297)
* fix incorrect slider style order * chore: fix lint check * chore: add list disable reason
1 parent bedc76d commit ba3b36a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/blocks/Slider/Slider.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,10 @@ import {
3030
getSlidesToShowWithDefaults,
3131
} from './utils';
3232

33-
import './Slider.scss';
3433
import './slick.scss';
34+
// Cause Slider.css should override slick.css
35+
// eslint-disable-next-line import/order
36+
import './Slider.scss';
3537

3638
const b = block('SliderBlock');
3739
const slick = block('slick-origin');

0 commit comments

Comments
 (0)