Skip to content

Commit

Permalink
fix: Fix uppercase mirage problem
Browse files Browse the repository at this point in the history
  • Loading branch information
criss8X committed Nov 9, 2024
1 parent 2868217 commit a79a613
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions src/components/AppLogo.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
import {StaticAssetPath} from "@/utils/util"
import {type FC} from "react"
import {ReactSVG} from "react-svg"
import Typography, {TypographyVariant} from "./Typography"
import {Heading} from "./ui/typography"

const AppLogo: FC = () => {
return (
<div className="flex w-max flex-col items-center">
<ReactSVG src={StaticAssetPath.NewAppLogo} className="drop-shadow-sm" />

<Typography
className="font-unbounded font-bold"
variant={TypographyVariant.BodyMedium}
<Heading
level="h6"
weight="bold"
className="font-unbounded uppercase"
style={{color: "#D64DF4", textShadow: "#d54df433 0 1px 0"}}>
MIRAGE
</Typography>
Mirage
</Heading>
</div>
)
}
Expand Down
4 changes: 2 additions & 2 deletions src/containers/NavigationSection/NavigationSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,14 @@ const NavigationSection: FC<{className?: string; onLogOut: () => void}> = ({
<ReactSVG src={StaticAssetPath.NewAppLogo} />

<Text
className="font-unbounded"
className="font-unbounded uppercase"
weight="semibold"
style={{
color: "#D64DF4",
fontSize: "0.70rem",
lineHeight: "0.75rem",
}}>
MIRAGE
Mirage
</Text>

<div className="mt-2 h-0.5 w-12 rounded-full bg-neutral-300" />
Expand Down

0 comments on commit a79a613

Please sign in to comment.