Skip to content

Commit

Permalink
chore(client): Fix index.scss vs Blueprint css specificity
Browse files Browse the repository at this point in the history
  • Loading branch information
fushar committed Dec 29, 2023
1 parent aa31512 commit 030c40a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
9 changes: 8 additions & 1 deletion judgels-client/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
{
"arrowParens": "avoid",
"importOrder": ["^ace-", "^react-syntax-highlighter/", "^(?!.*.css$)(?!.*Actions$)[./]", "Actions$", ".s?css$"],
"importOrder": [
"^ace-",
"^react-syntax-highlighter/",
"^(?!.*(Actions|.s?css|/routes/App)$)[./]",
"Actions$",
".s?css$",
"/routes/App$"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"plugins": ["@trivago/prettier-plugin-sort-imports"],
Expand Down
3 changes: 2 additions & 1 deletion judgels-client/src/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ import { PersistGate } from 'redux-persist/es/integration/react';

import { initGA } from './ga';
import { history, persistor, store } from './modules/store';
import App from './routes/App';

import './styles/index.scss';

import App from './routes/App';

require('typeface-open-sans');
require('typeface-roboto');

Expand Down

0 comments on commit 030c40a

Please sign in to comment.