Move .instance-description to css file

This commit is contained in:
Alex Gleason 2022-09-30 12:27:52 -05:00
parent ce255b7ded
commit 3b2b1ab05f
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
3 changed files with 16 additions and 17 deletions

View File

@ -8,6 +8,8 @@ import RegistrationForm from 'soapbox/features/auth_login/components/registratio
import { useAppDispatch, useAppSelector, useFeatures, useSoapboxConfig } from 'soapbox/hooks';
import { capitalize } from 'soapbox/utils/strings';
import './instance-description.css';
const LandingPage = () => {
const dispatch = useAppDispatch();
const features = useFeatures();

View File

@ -0,0 +1,14 @@
/* Instance HTML from the API. */
.instance-description a {
@apply underline;
}
.instance-description b,
.instance-description strong {
@apply font-bold;
}
.instance-description i,
.instance-description em {
@apply italic;
}

View File

@ -112,20 +112,3 @@ 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;
}
}