Skip to content

Commit

Permalink
fix(tx-builder-upload): change upload file text color
Browse files Browse the repository at this point in the history
  • Loading branch information
clovisdasilvaneto committed Oct 21, 2024
1 parent 5b6014c commit 7611fa5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
8 changes: 6 additions & 2 deletions apps/tx-builder/src/components/CreateNewBatchCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,13 @@ const StyledText = styled(Text)<{ error?: Boolean }>`
const StyledButtonLink = styled(ButtonLink)`
margin-left: 0.3rem;
padding: 0;
text-decoration: none;
&& > p {
color: ${({ theme }) => theme.palette.secondary.dark};
color: ${({ theme }) => theme.palette.upload.primary};
text-decoration: underline;
&:hover {
color: ${({ theme }) => theme.palette.backdrop.main};
}
}
`
3 changes: 3 additions & 0 deletions apps/tx-builder/src/theme/darkPalette.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ const darkPalette = {
main: '#FFFFFF',
background: '#303033',
},
upload: {
primary: '#fff',
},
static: {
main: '#121312',
},
Expand Down
3 changes: 3 additions & 0 deletions apps/tx-builder/src/theme/lightPalette.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ const lightPalette = {
main: '#121312',
background: '#EEEFF0',
},
upload: {
primary: '#12FF80',
},
static: {
main: '#121312',
},
Expand Down

0 comments on commit 7611fa5

Please sign in to comment.