This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
//------------ Workbench Settings ------------ | |
"workbench.activityBar.location": "bottom", | |
"workbench.colorTheme": "Houston", | |
"workbench.editor.showTabs": "single", | |
"workbench.statusBar.visible": false, | |
"workbench.startupEditor": "none", | |
"workbench.tips.enabled": false, | |
"editor.minimap.enabled": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createGlobalStyle } from "styled-components"; | |
const GlobalStyles = createGlobalStyle` | |
:root { | |
/* Primary */ | |
--color-primary-0: #1d2a3b; | |
--color-primary-1: #27374D; | |
--color-primary-2: #526D82; | |
--color-primary-3: #9DB2BF; | |
--color-primary-4: #DDE6ED; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- meta tag to allow rendering of images from faker.js or remote uri --> | |
<meta | |
http-equiv="Content-Security-Policy" | |
content="default-src *; | |
img-src * 'self' data: https:; script-src 'self' 'unsafe-inline' 'unsafe-eval' *; | |
style-src 'self' 'unsafe-inline' *" | |
/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
root: true, | |
env: { browser: true, es2020: true }, | |
extends: [ | |
"eslint:recommended", | |
"plugin:react/recommended", | |
"plugin:react/jsx-runtime", | |
"plugin:react-hooks/recommended", | |
], | |
ignorePatterns: ["dist", ".eslintrc.cjs"], |