Skip to content

Commit 6b7f26f

Browse files
author
Pascal Wegner
committed
Make inputs background transparent
1 parent 29ab935 commit 6b7f26f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/pwa/src/components/DurationInput/DurationInput.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export function DurationInput({
9292
onFocus={handleMinutesSelect}
9393
onSelect={handleMinutesSelect}
9494
data-testid={dataTestId && `${dataTestId}-minutes`}
95-
className="text-black text-center outline-none w-24"
95+
className="text-black text-center outline-none w-24 bg-transparent"
9696
ref={minutesRef}
9797
readOnly={readOnly}
9898
size={2}
@@ -110,7 +110,7 @@ export function DurationInput({
110110
onFocus={handleSecondsSelect}
111111
onSelect={handleSecondsSelect}
112112
data-testid={dataTestId && `${dataTestId}-seconds`}
113-
className="text-black text-center outline-none w-24"
113+
className="text-black text-center outline-none w-24 bg-transparent"
114114
ref={secondsRef}
115115
readOnly={readOnly}
116116
size={2}

0 commit comments

Comments
 (0)