Skip to content

Commit 26d38f4

Browse files
change color of cancel btn test in file-upload
1 parent 45b3e73 commit 26d38f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/OpenSign/src/components/fields/FileUpload.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ const FileUpload = (props) => {
256256
<>
257257
{props.formData ? (
258258
<div className="flex gap-2 justify-center items-center">
259-
<div className="flex justify-between items-center px-2 py-[6px] w-full font-bold rounded border-[1px] border-[#ccc] text-gray-500 bg-white text-[13px]">
259+
<div className="flex justify-between items-center px-2 py-[3px] w-full font-bold rounded border-[1px] border-[#ccc] text-gray-500 bg-white text-[13px]">
260260
<div className="break-all">
261261
file selected : {props.formData.split("/")[3]}
262262
</div>
@@ -266,9 +266,9 @@ const FileUpload = (props) => {
266266
setFileUpload([]);
267267
props.onChange(undefined);
268268
}}
269-
className="cursor-pointer px-[10px] text-base font-bold bg-white"
269+
className="cursor-pointer px-[10px] text-[20px] font-bold bg-white text-red-500"
270270
>
271-
X
271+
<i className="fa-solid fa-xmark"></i>
272272
</div>
273273
</div>
274274
<DropboxChooser

0 commit comments

Comments
 (0)