Skip to content

Commit

Permalink
Use fixed color and background for inputs and textfields
Browse files Browse the repository at this point in the history
  • Loading branch information
owi92 committed Sep 19, 2023
1 parent a19c937 commit 42bd999
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion frontend/src/GlobalStyle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,5 +120,12 @@ const GLOBAL_STYLE = css({
borderTop: `1px solid ${COLORS.neutral25}`,
},
"p, label": { color: COLORS.neutral80 },
input: { color: COLORS.neutral90 },
"input, textarea": {
backgroundColor: COLORS.neutral05,
color: COLORS.neutral90,
":disabled": {
backgroundColor: COLORS.neutral10,
color: COLORS.neutral70,
},
},
});

0 comments on commit 42bd999

Please sign in to comment.