Various styling tweaks, fix #243

This commit is contained in:
Pieter Vander Vennet 2021-04-12 13:05:30 +02:00
parent 7d36d151e3
commit f177a3bad3
9 changed files with 50 additions and 10 deletions

View file

@ -47,7 +47,7 @@ export default class FullWelcomePaneWithTabs extends UIElement {
{header: `<img src='${layoutToUse.icon}'>`, content: welcome},
{
header: Svg.osm_logo_img,
content: Translations.t.general.openStreetMapIntro as UIElement
content: Translations.t.general.openStreetMapIntro.Clone().SetClass("link-underline") as UIElement
},
]
@ -71,7 +71,7 @@ export default class FullWelcomePaneWithTabs extends UIElement {
if (userdetails.csCount < Constants.userJourney.mapCompleteHelpUnlock) {
return ""
}
return new Combine([Translations.t.general.aboutMapcomplete, "<br/>Version " + Constants.vNumber]).Render();
return new Combine([Translations.t.general.aboutMapcomplete, "<br/>Version " + Constants.vNumber]).SetClass("link-underline").Render();
}, [Locale.language]))
}
);