From 3330155c83be7b0fcb8df75dd7755acc08f1456a Mon Sep 17 00:00:00 2001 From: Andy Espagnolo Date: Wed, 17 Apr 2024 20:22:30 -0300 Subject: [PATCH] fix: css import order --- src/main.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main.tsx b/src/main.tsx index 029ecec..bf57379 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -6,13 +6,12 @@ import { BrowserRouter, Route, Routes } from 'react-router-dom' import { QueryClient } from '@tanstack/query-core' import { QueryClientProvider } from '@tanstack/react-query' +// These CSS styles must be defined last to avoid overriding other styles import 'balloon-css/balloon.min.css' import 'decentraland-ui/dist/themes/alternative/light-theme.css' import 'decentraland-ui/dist/themes/base-theme.css' import 'semantic-ui-css/semantic.min.css' -// These CSS styles must be defined last to avoid overriding other styles -// import 'core-js/features/set-immediate' // TODO: Check if this is necessary import SnapshotStatus from './components/Debug/SnapshotStatus' import Layout from './components/Layout/Layout' import Segment from './components/Segment'