Initial adjustments to the website

This commit is contained in:
2024-04-10 22:30:01 +01:00
parent 92f4f2d0f7
commit 2d08313b05
17 changed files with 157 additions and 80 deletions

View File

@@ -19,9 +19,9 @@ const Education : FC<EducationArgs> = (props) => {
case "Warsaw":
return ", Poland";
case "London":
return ", England, UK󠁧󠁢󠁥󠁮󠁧󠁿";
return ", UK󠁧󠁢󠁥󠁮󠁧󠁿";
case "Edinburgh":
return ", Scotland, UK󠁧󠁢󠁳󠁣󠁴󠁿";
return ", UK󠁧󠁢󠁳󠁣󠁴󠁿";
}
};
@@ -45,7 +45,16 @@ const Education : FC<EducationArgs> = (props) => {
<span className={styles.otherDetails}>
<div className={styles.location}>{props.city}{getCountryEmoji()}</div>
<hr/>
{props.endDate ? props.startDate + " - " + props.endDate : "Since " + props.startDate}
{props.endDate ?
<>
<i>From:&nbsp;&nbsp;</i>
<span style={{float:"right"}}>{props.startDate}</span>
<br/>
<i>To:&nbsp;&nbsp;</i>
<span style={{float:"right"}}>{props.endDate}</span>
</>:
"Since " + props.startDate
}
</span>
</div>
);