Skip to content

fix Graphweaver.svg logo centred on iOS/Safari, fix ibm logo is small #1751

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

Merged
merged 5 commits into from
Aug 8, 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
11 changes: 2 additions & 9 deletions public/img/conf/Sponsors/Graphweaver.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 3 additions & 16 deletions public/img/conf/Sponsors/IBM.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 0 additions & 2 deletions public/img/conf/Sponsors/TheGuild.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/app/conf/2024/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export default function Page() {
</InfiniteMovingSpeakers>

<div className="mt-14 flex gap-4">
<Button href="/conf/2024/speakers">See all Speakers</Button>
<Button href="/conf/2024/speakers">See all speakers</Button>
</div>

<div className="mt-16">
Expand Down Expand Up @@ -152,7 +152,7 @@ export default function Page() {
</div>

<div className="mt-14 flex gap-4">
<Button href="/conf/2024/speakers">View full schedule</Button>
<Button href="/conf/2024/schedule">View full schedule</Button>
</div>
</div>

Expand Down
3 changes: 2 additions & 1 deletion src/app/conf/2024/sponsors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ function List({
className={clsx(
"relative shrink-0 bg-[#251f30] rounded-md",
"flex justify-center",
"items-center", // fix vertical align in Safari/iOS
"border border-solid border-transparent hover:border-primary focus:border-primary",
"transition-colors",
"hover:shadow-primary/20 focus:shadow-primary/20 shadow-md outline-none",
Expand All @@ -69,7 +70,7 @@ function List({
<NextImage
alt={`${name} logo`}
src={icon}
className="h-auto lg:max-w-60 shrink"
className="lg:w-auto lg:max-w-60 max-h-full"
/>
<span className="font-sans absolute right-5 top-5 leading-none text-white lg:text-2xl">
Expand Down