💄(react) fix the css order in storybook

Previously, having the icon file coming after the design system styles
was causing issues: we were not able to set fs-* classes to material-icons
because the priority of the selector was too low.
This commit is contained in:
Nathan Vasse
2023-09-01 17:37:44 +02:00
committed by NathanVss
parent 71dc458ab4
commit 21b6d77913

View File

@@ -1,6 +1,6 @@
import "../src/icons.scss";
import "../src/index.scss";
import "../src/fonts.scss";
import "../src/icons.scss";
import { Preview } from "@storybook/react";
const preview: Preview = {