fix icon misalignment

This commit is contained in:
Cloudburst 2022-09-22 11:39:46 +02:00 committed by GitHub
parent d9a1f5328e
commit 225c55cb3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -7,6 +7,7 @@ import bgImage from "../media/phones.png"
import { TiWarning } from "react-icons/ti"; import { TiWarning } from "react-icons/ti";
import { GoVerified } from "react-icons/go"; import { GoVerified } from "react-icons/go";
import { IconContext } from "react-icons";
const IndexPage = () => { const IndexPage = () => {
const [repos, setRepos] = useState([]); const [repos, setRepos] = useState([]);
@ -30,9 +31,11 @@ const IndexPage = () => {
This means you should treat them with the same level of scrutiny you treat any apps. Extensions can also read all of the Cloudstream's data. This means you should treat them with the same level of scrutiny you treat any apps. Extensions can also read all of the Cloudstream's data.
</span> </span>
<br /> <br />
<span className="text-xs flex flex-row items-baseline"> <IconContext.Provider value={{className: 'inline-block'}}>
Repos with a <GoVerified class="stroke-current flex-shrink-0 mx-1" /> are constantly audited by the app developers so you can probably trust them. <span className="text-xs">
</span> Repos with a <GoVerified class="stroke-current flex-shrink-0 mx-1" /> are constantly audited by the app developers so you can probably trust them.
</span>
</IconContext.Provider>
</div> </div>
</div> </div>
</div> </div>