Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DanZfsd committed Oct 16, 2024
1 parent 6b8bbbc commit 13911c9
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ResponsiveLogo = (): React.ReactElement => {
>
<Image
src="/images/humane_society_logo_text.png"
alt="Humane Societsy Logo"
alt="Humane Society Logo"
height={{ base: "6.5rem", md: "9rem" }}
aspectRatio="27.3/14"
objectFit="cover"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ const ResponsiveModalWindow = ({
width={{ base: "90%", sm: "21.375rem", md: "33.625rem" }}
direction="column"
gap={{ base: "1rem", md: "2.8125rem" }}
padding={{ base: "1.38rem 3.38rem", md: "3.6875rem 10.5rem" }}
maxWidth={{ base: "21.375rem", md: "none" }}
padding={{ base: "1.38rem 2.38rem", md: "3.6875rem 10.5rem" }}
>
{children}
</Flex>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ const ResponsivePawprintBackground = (): React.ReactElement => {
left="50%"
width={{ base: "200vw", md: "100vw" }}
height={{ base: "200vh", md: "100vh" }}
transform={{ base: "translate(-50%, -50%) rotate(-15deg)", md: "translate(-50%, -50%)" }}
transform={{
base: "translate(-50%, -50%) rotate(-15deg)",
md: "translate(-50%, -50%)",
}}
sx={{
backgroundImage: "url('/images/paw_prints_bg.svg')",
backgroundSize: { base: "contain", md: "130%" },
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/constants/Routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ export const USER_MANAGEMENT_PAGE = "/admin/users";

export const ADMIN_PAGE = "/admin";

export const CREATE_PASSWORD_PAGE = "/create-password";
export const CREATE_PASSWORD_PAGE = "/create-password";
5 changes: 5 additions & 0 deletions frontend/src/theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ const theme = extendTheme({
fontWeight: 600,
fontSize: "28px",
},
h2Mobile: {
fontFamily: "Poppins",
fontWeight: 600,
fontSize: "24px",
},
h3: {
fontFamily: "Poppins",
fontWeight: 500,
Expand Down

0 comments on commit 13911c9

Please sign in to comment.