diff --git a/app/soapbox/features/landing_page/index.tsx b/app/soapbox/features/landing_page/index.tsx index 1e3b01f80..76e77bcfa 100644 --- a/app/soapbox/features/landing_page/index.tsx +++ b/app/soapbox/features/landing_page/index.tsx @@ -113,7 +113,10 @@ const LandingPage = () => { - {instance.description} + diff --git a/app/styles/basics.scss b/app/styles/basics.scss index 9db26912a..9384c94f2 100644 --- a/app/styles/basics.scss +++ b/app/styles/basics.scss @@ -112,3 +112,20 @@ noscript { div[data-viewport-type="window"] { position: static !important; } + +// Instance HTML from the API. +.instance-description { + a { + @apply underline; + } + + b, + strong { + @apply font-bold; + } + + i, + em { + @apply italic; + } +}