Skip to content

Commit

Permalink
Merge pull request #6 from lizaklimova/theme-switch
Browse files Browse the repository at this point in the history
added indexes to empty folders
  • Loading branch information
lizaklimova authored Jan 14, 2024
2 parents 759129d + e248812 commit aa20a44
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/assets/icons/sprite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/assets/styles/GlobalStyles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const GlobalStyles = createGlobalStyle`
font-size: 14px;
line-height: 1.29;
margin: 0;
color: ${({ theme }) => theme.mainText};
background-color: ${({ theme }) => theme.background};
transition: ${({ theme }) =>
Expand Down
2 changes: 1 addition & 1 deletion src/assets/theme/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ interface Theme {
[key: string]: string;
}

export const commonVars: Theme = Object.freeze({
const commonVars: Theme = Object.freeze({
accentGreen: '#8BAA36',
lightGreen: '#EBF3D4',
white: 'fffff',
Expand Down
1 change: 1 addition & 0 deletions src/helpers/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {};
1 change: 1 addition & 0 deletions src/redux/store.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {};
1 change: 1 addition & 0 deletions src/services/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {};

0 comments on commit aa20a44

Please sign in to comment.