Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: header spacing #99

Merged
merged 2 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 1 addition & 5 deletions src/components/common/scrolling-banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@ export default function ScrollingBanner() {
const repeatCount = 20; // Increase this number to add more repetitions

return (
<div
className="
// bg-gradient-to-b from-transparent from-60% via-redTheme via-75% to-transparent to-90%
bg-redTheme h-fit text-whiteTheme overflow-hidden py-2"
>
<div className="bg-redTheme h-fit text-whiteTheme overflow-hidden py-2">
<motion.div
className="whitespace-nowrap inline-block"
animate={{
Expand Down
2 changes: 1 addition & 1 deletion src/components/widget/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ const Nav = () => {
</header>

<section className="fullpage-menu hidden fixed left-0 top-0 w-screen z-50 h-screen">
<div className="header-2 fixed left-0 top-0 w-full flex md:py-[20px] md:px-[30px] p-[30px] z-[60] justify-between items-center">
<div className="header-2 fixed pt-20 mt-10 left-0 top-0 w-full flex md:py-[20px] md:px-[30px] p-[30px] z-[60] justify-between items-center">
<Image
src={`${tedxsjecAssetsPrefix}/logo/blackLogo.webp`}
height={180}
Expand Down
4 changes: 4 additions & 0 deletions src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,10 @@ export const silverSponsors: Sponsors[] = [
name: "CASHCADE",
logoUrl: `${tedxsjecAssetsPrefix}/sponsors/CASHCADE.avif`,
},
{
name: "IDP",
logoUrl: `${tedxsjecAssetsPrefix}/sponsors/idp.avif`,
},
];

export const bronzeSponsors: Sponsors[] = [
Expand Down
Loading