- fixed typos;
This commit is contained in:
@@ -19,7 +19,7 @@
|
|||||||
.statsBigBadges__gridItem {
|
.statsBigBadges__gridItem {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding: 28px;
|
padding: 16px;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
border: 1px solid var(--yellow-500);
|
border: 1px solid var(--yellow-500);
|
||||||
background: var(--card-full-background-color-2);
|
background: var(--card-full-background-color-2);
|
||||||
@@ -28,14 +28,14 @@
|
|||||||
|
|
||||||
span {
|
span {
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
font-size: 21px;
|
font-size: 19px;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
line-height: normal;
|
line-height: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
span:nth-last-of-type(1) {
|
span:nth-last-of-type(1) {
|
||||||
font-size: 28px;
|
font-size: 22px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:nth-of-type(2) {
|
&:nth-of-type(2) {
|
||||||
|
|||||||
@@ -147,7 +147,7 @@ const AddCompany = () => {
|
|||||||
return (
|
return (
|
||||||
<div className="appPage">
|
<div className="appPage">
|
||||||
<div className="appPage__pageHeader">
|
<div className="appPage__pageHeader">
|
||||||
<h1>{__('Agguingi azienda', 'gepafin')}</h1>
|
<h1>{__('Aggiungi azienda', 'gepafin')}</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="appPage__spacer"></div>
|
<div className="appPage__spacer"></div>
|
||||||
@@ -298,7 +298,7 @@ const AddCompany = () => {
|
|||||||
<FormField
|
<FormField
|
||||||
type="switch"
|
type="switch"
|
||||||
fieldName="isLegalRepresentant"
|
fieldName="isLegalRepresentant"
|
||||||
label={__('Sei il Rapprentante Legale dell’azienda?', 'gepafin')}
|
label={__('Sei il Rappresentante Legale dell’azienda?', 'gepafin')}
|
||||||
control={control}
|
control={control}
|
||||||
errors={errors}
|
errors={errors}
|
||||||
onLabel={__('Si', 'gepafin')}
|
onLabel={__('Si', 'gepafin')}
|
||||||
|
|||||||
@@ -166,7 +166,7 @@ const BandoView = () => {
|
|||||||
<div className="row rowContent">
|
<div className="row rowContent">
|
||||||
<ul>
|
<ul>
|
||||||
{data.criteria.map((o, i) => <li key={i}>
|
{data.criteria.map((o, i) => <li key={i}>
|
||||||
{`${o.value} ${sprintf(__('(%d punti)'), o.score)}`}
|
{o.value} {o.score > 0 ? sprintf(__(' (%d punti)'), o.score) : null}
|
||||||
</li>)}
|
</li>)}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -314,7 +314,7 @@ const BandoViewBeneficiario = () => {
|
|||||||
<div className="row rowContent">
|
<div className="row rowContent">
|
||||||
<ul>
|
<ul>
|
||||||
{data.criteria.map((o, i) => <li key={i}>
|
{data.criteria.map((o, i) => <li key={i}>
|
||||||
{`${o.value} ${sprintf(__('(%d punti)'), o.score)}`}
|
{o.value} {o.score > 0 ? sprintf(__(' (%d punti)'), o.score) : null}
|
||||||
</li>)}
|
</li>)}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -397,7 +397,7 @@ const ProfileCompany = () => {
|
|||||||
<FormField
|
<FormField
|
||||||
type="switch"
|
type="switch"
|
||||||
fieldName="isLegalRepresentant"
|
fieldName="isLegalRepresentant"
|
||||||
label={__('Sei il Rapprentante Legale dell’azienda?', 'gepafin')}
|
label={__('Sei il Rappresentante Legale dell’azienda?', 'gepafin')}
|
||||||
control={control}
|
control={control}
|
||||||
errors={errors}
|
errors={errors}
|
||||||
onLabel={__('Si', 'gepafin')}
|
onLabel={__('Si', 'gepafin')}
|
||||||
|
|||||||
Reference in New Issue
Block a user