Skip to content

Commit 4c330b2

Browse files
committed
add style to link in job offer modal
Signed-off-by: Shiva Pouya <shiva.pouya@tugraz.at>
1 parent 3bb5a64 commit 4c330b2

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

src/modules/jobOfferForm.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1865,10 +1865,11 @@ export class JobOfferFormElement extends BaseFormElement {
18651865
localizedLinkUrl
18661866
? html`
18671867
<a
1868+
class="job-overview-meta-link"
18681869
href="${localizedLinkUrl}"
18691870
target="_blank"
18701871
rel="noopener noreferrer">
1871-
${localizedLinkName || localizedLinkUrl}
1872+
<span>${localizedLinkName || localizedLinkUrl}</span>
18721873
</a>
18731874
`
18741875
: '',
@@ -2253,6 +2254,14 @@ export class JobOfferFormElement extends BaseFormElement {
22532254
margin: 0;
22542255
}
22552256
2257+
.job-overview-meta-link {
2258+
display: inline-flex;
2259+
align-items: center;
2260+
gap: 0.35rem;
2261+
text-decoration: underline;
2262+
text-underline-offset: 0.15em;
2263+
}
2264+
22562265
.job-overview-section {
22572266
margin-top: 1rem;
22582267
}

0 commit comments

Comments
 (0)