fix: removed title on the navbar in the mobile view (#1236)

This commit is contained in:
MrlolDev
2023-02-06 20:52:36 +09:00
committed by GitHub
parent 81167f69d5
commit b85f7c0734
+1 -1
View File
@@ -36,7 +36,7 @@ export function Header() {
<Link href={homeURL} aria-label="Home">
<Flex alignItems="center">
<Image src="/images/logos/logo.svg" className="mx-auto object-fill" width="50" height="50" alt="logo" />
<Text fontFamily="inter" fontSize={["lg", "2xl"]} fontWeight="bold" ml="3">
<Text fontFamily="inter" fontSize={["lg", "2xl"]} fontWeight="bold" ml="3" className="hidden sm:block">
{t("title")}
</Text>
</Flex>