-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor add multiple creators section create categories component refactor the use of category colors, translation file, and rendering of the tags separate creators section into its own component add unpublished icon to card update imports
- Loading branch information
Showing
9 changed files
with
372 additions
and
243 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
export const colors = { | ||
primary: '#02B7C4', | ||
"primary-01": "#E5F8F9", | ||
secondary: '#DC3545', | ||
tertiary: '#FECB00', | ||
'tertiary-dark': '#C18D30', | ||
black: '#292535', | ||
gray: '#7E7E7E', | ||
light: '#C4C4C4', | ||
white: '#fff', | ||
green: '#22C55E', | ||
red: '#f44336', | ||
'blue-light': '#00B8C433', | ||
'blue-dark': '#7BA8AB', | ||
'blue-pale': '#DBECFF' | ||
} | ||
primary: '#02B7C4', | ||
'primary-01': '#E5F8F9', | ||
secondary: '#DC3545', | ||
tertiary: '#FECB00', | ||
'tertiary-dark': '#C18D30', | ||
black: '#292535', | ||
gray: '#7E7E7E', | ||
light: '#C4C4C4', | ||
white: '#fff', | ||
green: '#22C55E', | ||
red: '#f44336', | ||
'blue-light': '#00B8C433', | ||
'blue-dark': '#7BA8AB', | ||
'blue-pale': '#DBECFF', | ||
border: '#7E5B4B', | ||
}; | ||
|
||
export const borders = { | ||
borderRadius: 20, | ||
borderRadiusMd: 8, | ||
borderRadiusSm: 4, | ||
} | ||
borderRadius: 20, | ||
borderRadiusMd: 8, | ||
borderRadiusSm: 4, | ||
}; |
This file contains 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
This file contains 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
Oops, something went wrong.