Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Youtube from "../icons/Youtube";
import Tiktok from "../icons/Tiktok";

const Footer = () => (
<div className="absolute block min-h-20 w-dvw items-center justify-center bg-[var(--primary-black)] bg-cover px-4 py-12 text-sm text-black md:text-base lg:inline-flex">
<div className="relative box-border block min-h-20 w-full max-w-full items-center justify-center overflow-hidden bg-[var(--primary-black)] bg-cover px-4 py-12 text-sm text-black md:text-base lg:flex lg:flex-wrap">
<div className="flex items-center justify-center px-4 py-14 lg:px-1 lg:py-0">
<SocialMedia href="https://www.instagram.com/techstartucalgary/">
<Instagram gradient />
Expand Down
2 changes: 2 additions & 0 deletions src/components/Particles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const Particle = () => {
init={particlesInit}
loaded={particlesLoaded}
options={{
fullScreen: { enable: false },
interactivity: {
detect_on: "canvas",
events: {
Expand Down Expand Up @@ -135,6 +136,7 @@ const Particle = () => {
},
retina_detect: false,
}}
style={{ height: "100%", width: "100%" }}
/>
);
};
Expand Down
6 changes: 3 additions & 3 deletions src/pageLayouts/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const HomePage = () => {
return (
<div className="m-0 box-border overflow-hidden border-none leading-normal">
<header
className="relative flex h-[60vw] flex-col text-center md:h-[70vw]"
className="relative flex min-h-[35vh] flex-col items-center justify-center text-center md:min-h-[115vh] md:items-center md:justify-start md:pt-8"
id="homePageTop"
style={{
backgroundImage:
Expand All @@ -27,15 +27,15 @@ const HomePage = () => {
<div className="pointer-events-none relative z-[3]">
<motion.img
animate={{ opacity: 1 }}
className="mx-auto mt-[50px] w-[85%] max-w-[800px]"
className="mx-auto w-[85%] max-w-[800px] md:w-[90%] md:max-w-[900px]"
initial={{ opacity: 0 }}
src={tsu_logo.src}
transition={{ duration: 0.5 }}
></motion.img>
</div>
<motion.p
animate={{ opacity: 1 }}
className="pointer-events-none z-[3] mb-[100%] mt-0 text-[5vw] font-bold leading-[1.1] text-white"
className="pointer-events-none z-[3] mb-8 mt-4 text-[5vw] font-bold leading-[1.1] text-white md:mb-10"
initial={{ opacity: 0 }}
transition={{ delay: 1 }}
>
Expand Down