Skip to content

Commit

Permalink
#16 Linter updates
Browse files Browse the repository at this point in the history
  • Loading branch information
vidhya-metacell committed Jul 29, 2022
1 parent cb0d701 commit 156c8bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/components/assets/styles/variables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const nodeGreen = {
nodeGreenBoxShadow: '0 0.25rem 0.625rem -0.25rem rgba(102, 157, 102, 0.3)',
};


const vars = {
fontFamily: 'Inter, sans-serif',
primaryBg: '#f1f1f1',
Expand Down
6 changes: 4 additions & 2 deletions src/theme.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import vars from './components/assets/styles/variables';
import MI from "./components/assets/svg/mechanism-yellow.svg";
import MI from './components/assets/svg/mechanism-yellow.svg';

type ThemeVars = {
[key: string]: any;
Expand Down Expand Up @@ -97,7 +97,9 @@ const applicationTheme = (params: ThemeVars) => {
}
.primary-node .primary-node_header img {
background: "url(data:image/svg+xml;base64,${new Buffer(MI).toString('base64')})";
background: "url(data:image/svg+xml;base64,${new Buffer(
MI
).toString('base64')})";
}
.primary-node p {
Expand Down

0 comments on commit 156c8bc

Please sign in to comment.