Skip to content

Commit 0fec2de

Browse files
korkijaNanSigmaBohdanMoroz
authored andcommitted
Release mode for workspaces
1 parent 456c656 commit 0fec2de

38 files changed

Lines changed: 1560 additions & 1590 deletions

DocuSign.Workspaces/DocuSign.Workspaces/ClientApp/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

DocuSign.Workspaces/DocuSign.Workspaces/ClientApp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"react-hot-toast": "^2.6.0",
2020
"react-i18next": "^16.3.5",
2121
"react-router-dom": "^7.9.6",
22-
"react-scripts": "5.0.1",
22+
"react-scripts": "^5.0.1",
2323
"sass": "^1.94.2",
2424
"web-vitals": "^2.1.4"
2525
},
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

DocuSign.Workspaces/DocuSign.Workspaces/ClientApp/src/App.scss

Lines changed: 57 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ body.home-page::before {
207207
}
208208

209209
.nav__logo {
210-
height: 40px;
210+
height: 36px;
211211
width: auto;
212212
display: block;
213213
}
@@ -237,6 +237,36 @@ body.home-page::before {
237237
.nav__link:hover {
238238
color: #e0e0f2;
239239
}
240+
.need_to-row {
241+
margin-top: 32px;
242+
display: flex;
243+
flex-direction: row;
244+
}
245+
.need_to-row__label {
246+
color: #141414;
247+
font-weight: 600;
248+
font-family: 'Inter', sans-serif;
249+
font-size: 14px;
250+
line-height: 150%;
251+
margin-top: 0px;
252+
}
253+
.need_to__link {
254+
background: transparent;
255+
color: #4e2ca0;
256+
line-height: 150%;
257+
font-weight: 600;
258+
font-family: 'Inter', sans-serif;
259+
font-size: 14px;
260+
cursor: pointer;
261+
display: inline-flex;
262+
align-items: center;
263+
gap: 4px;
264+
transition: all 0.1s ease 0s;
265+
margin-left: 16px;
266+
}
267+
.need_to__link:hover {
268+
color: #4909de;
269+
}
240270

241271
.nav__actions {
242272
padding-right: 2rem;
@@ -599,19 +629,17 @@ body.home-page::before {
599629
width: 100%;
600630
margin-top: 30px;
601631
margin-bottom: 50px;
602-
// margin-left: 0px;
603632
margin-left: 20px;
633+
padding-right: 70px;
604634
}
605635

606636
.step-wrapper {
607637
display: flex;
608638
flex-direction: column;
609639
align-items: center;
610640
flex: 1;
611-
@media (max-width: 768px) {
612-
&:last-child {
613-
flex: 0;
614-
}
641+
&:last-child {
642+
flex: 0;
615643
}
616644
}
617645

@@ -776,7 +804,6 @@ body.home-page::before {
776804

777805
.cards {
778806
padding-top: 4rem;
779-
// grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
780807
margin-top: 3vw;
781808
}
782809

@@ -1101,6 +1128,9 @@ body:not(.home-page) .footer {
11011128
width: 100%;
11021129
flex-wrap: wrap;
11031130
}
1131+
.step-progress {
1132+
padding-right: 70px;
1133+
}
11041134

11051135
.footer__cta,
11061136
.footer__link {
@@ -1124,6 +1154,9 @@ body:not(.home-page) .footer {
11241154
padding-top: 40px;
11251155
}
11261156
}
1157+
.nav__logo {
1158+
margin-left: 20px;
1159+
}
11271160
body.home-page::before {
11281161
min-height: 20%;
11291162
background-position: right top;
@@ -1202,7 +1235,8 @@ body:not(.home-page) .footer {
12021235
}
12031236
}
12041237
.step-progress {
1205-
width: 90%;
1238+
width: 100%;
1239+
padding-right: 40px;
12061240
}
12071241
.behind_scenes {
12081242
margin-left: 48px;
@@ -1271,7 +1305,7 @@ body:not(.home-page) .footer {
12711305
}
12721306

12731307
.nav__logo {
1274-
height: 30px;
1308+
height: 24px;
12751309
width: auto;
12761310
display: block;
12771311
margin-left: 20px;
@@ -1427,7 +1461,7 @@ body:not(.home-page) .footer {
14271461
}
14281462

14291463
.step-progress {
1430-
width: 90%;
1464+
width: 100%;
14311465
margin-left: 18px;
14321466
}
14331467
.footer__title {
@@ -1478,6 +1512,19 @@ body:not(.home-page) .footer {
14781512
margin-left: 0px;
14791513
margin-right: 0px;
14801514
}
1515+
.need_to-row {
1516+
flex-direction: column;
1517+
margin-top: 24px;
1518+
}
1519+
.need_to-row__label {
1520+
font-size: 12px;
1521+
}
1522+
.need_to__link {
1523+
font-size: 12px;
1524+
1525+
margin-left: 0px;
1526+
margin-top: 8px;
1527+
}
14811528
}
14821529

14831530
@media (max-width: 420px) {
Lines changed: 10 additions & 0 deletions
Loading

DocuSign.Workspaces/DocuSign.Workspaces/ClientApp/src/components/AgreementRow.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from 'react';
21
import { useTranslation } from 'react-i18next';
32

43
export const AgreementRow = ({ label, checked, onToggle, onPreview }) => {
@@ -20,4 +19,4 @@ export const AgreementRow = ({ label, checked, onToggle, onPreview }) => {
2019
</label>
2120
</div>
2221
);
23-
};
22+
};

DocuSign.Workspaces/DocuSign.Workspaces/ClientApp/src/components/ApiDescription.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from 'react';
1+
import { useState } from 'react';
22
import { useTranslation } from 'react-i18next';
33
import parse from 'html-react-parser';
44
import { Collapse } from 'react-bootstrap';
@@ -9,7 +9,7 @@ import './ApiDescription.scss';
99

1010
export const ApiDescription = ({ requesting }) => {
1111
const { t } = useTranslation();
12-
const [open, setOpen] = React.useState(true);
12+
const [open, setOpen] = useState(true);
1313

1414
if (requesting) {
1515
return <ApiDescriptionSkeleton isBig={open} />;

0 commit comments

Comments
 (0)