Merged in chore/BOOK-739-replace-caption (pull request #3428)
chore(BOOK-739): replace caption with typography * chore(BOOK-739): replace caption with typography * chore(BOOK-739): refactor div * chore(BOOK-739): refactor badge * chore(BOOK-739): remove span * chore(BOOK-739): skeleton update * chore(BOOK-739): update * chore(BOOK-739): update reward * chore(BOOK-739): update voucher currency Approved-by: Erik Tiekstra
This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import { dt } from "@scandic-hotels/common/dt"
|
||||
import Caption from "@scandic-hotels/design-system/Caption"
|
||||
import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon"
|
||||
import { OldDSButton as Button } from "@scandic-hotels/design-system/OldDSButton"
|
||||
import { Typography } from "@scandic-hotels/design-system/Typography"
|
||||
@@ -41,15 +40,18 @@ export default function JobylonCard({ job }: JobylonCardProps) {
|
||||
</Typography>
|
||||
|
||||
<div className={styles.contentWrapper}>
|
||||
<div>
|
||||
<Caption>{job.categories.map((cat) => cat.text).join(", ")}</Caption>
|
||||
<Caption>
|
||||
{job.locations
|
||||
.map((loc) => `${loc.city}, ${loc.country}`)
|
||||
.join(" | ")}
|
||||
</Caption>
|
||||
<Caption color="uiTextPlaceholder">{deadlineText}</Caption>
|
||||
</div>
|
||||
<Typography variant="Body/Supporting text (caption)/smRegular">
|
||||
<div>
|
||||
<p>{job.categories.map((cat) => cat.text).join(", ")}</p>
|
||||
<p>
|
||||
{job.locations
|
||||
.map((loc) => `${loc.city}, ${loc.country}`)
|
||||
.join(" | ")}
|
||||
</p>
|
||||
<p className={styles.deadline}>{deadlineText}</p>
|
||||
</div>
|
||||
</Typography>
|
||||
|
||||
<Button
|
||||
theme="base"
|
||||
size="small"
|
||||
|
||||
@@ -7,6 +7,10 @@
|
||||
border-radius: var(--Corner-radius-md);
|
||||
}
|
||||
|
||||
.deadline {
|
||||
color: var(--Text-Secondary);
|
||||
}
|
||||
|
||||
.contentWrapper {
|
||||
display: grid;
|
||||
gap: var(--Space-x1);
|
||||
|
||||
Reference in New Issue
Block a user