Skip to content

Commit 5327806

Browse files
style: update send button color in send mail & size of certificate button
1 parent 1f2298f commit 5327806

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

apps/OpenSign/src/components/pdf/EmailComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ function EmailComponent({
293293
<hr className="w-full my-[15px] bg-base-content" />
294294
<button
295295
type="button"
296-
className="op-btn op-btn-primary"
296+
className="op-btn op-btn-secondary"
297297
onClick={() => emailList.length > 0 && sendEmail()}
298298
>
299299
Send

apps/OpenSign/src/components/pdf/RecipientList.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ const RecipientList = (props) => {
209209
</div>
210210
</div>
211211
{isMobile && props.sendInOrder && (
212-
<div className="flex flex-row items-center gap-[5px]">
212+
<div className="flex flex-row items-center gap-[5px] mr-2">
213213
<div
214214
onClick={(e) => {
215215
if (ind !== 0) {

apps/OpenSign/src/components/pdf/SignerListComponent.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,10 @@ function SignerListComponent(props) {
2828
return (
2929
<div
3030
className="rounded-xl mx-1 flex flex-row items-center py-[10px] mt-1"
31-
style={{
32-
background: checkSignerBackColor(props.obj)
33-
}}
31+
style={{ background: checkSignerBackColor(props.obj) }}
3432
>
3533
<div
36-
style={{
37-
background: checkUserNameColor(props.obj)
38-
}}
34+
style={{ background: checkUserNameColor(props.obj) }}
3935
className="flex w-[30px] h-[30px] rounded-full justify-center items-center mx-1"
4036
>
4137
<span className="text-[12px] text-center font-bold text-black uppercase">

apps/OpenSign/src/pages/PdfRequestFiles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1593,7 +1593,7 @@ function PdfRequestFiles() {
15931593
className="font-[500] text-[13px] mr-[5px] op-btn op-btn-secondary"
15941594
>
15951595
<i
1596-
className="fa-light fa-award"
1596+
className="fa-light fa-award mx-[3px] lg:mx-0"
15971597
aria-hidden="true"
15981598
></i>
15991599
<span className="hidden lg:block">

0 commit comments

Comments
 (0)