Skip to content

Commit 0ed3f20

Browse files
authored
fix Graphweaver.svg logo centred on iOS/Safari, fix ibm logo is small (graphql#1751)
* fix `Graphweaver.svg` logo centred on iOS/Safari * fix ibm viewport * fixes * aa * Update page.tsx
1 parent 21dd7bc commit 0ed3f20

File tree

5 files changed

+9
-30
lines changed

5 files changed

+9
-30
lines changed
Lines changed: 2 additions & 9 deletions
Loading

public/img/conf/Sponsors/IBM.svg

Lines changed: 3 additions & 16 deletions
Loading

public/img/conf/Sponsors/TheGuild.svg

Lines changed: 0 additions & 2 deletions
Loading

src/app/conf/2024/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export default function Page() {
124124
</InfiniteMovingSpeakers>
125125

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

130130
<div className="mt-16">
@@ -152,7 +152,7 @@ export default function Page() {
152152
</div>
153153

154154
<div className="mt-14 flex gap-4">
155-
<Button href="/conf/2024/speakers">View full schedule</Button>
155+
<Button href="/conf/2024/schedule">View full schedule</Button>
156156
</div>
157157
</div>
158158

src/app/conf/2024/sponsors.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ function List({
5656
className={clsx(
5757
"relative shrink-0 bg-[#251f30] rounded-md",
5858
"flex justify-center",
59+
"items-center", // fix vertical align in Safari/iOS
5960
"border border-solid border-transparent hover:border-primary focus:border-primary",
6061
"transition-colors",
6162
"hover:shadow-primary/20 focus:shadow-primary/20 shadow-md outline-none",
@@ -69,7 +70,7 @@ function List({
6970
<NextImage
7071
alt={`${name} logo`}
7172
src={icon}
72-
className="h-auto lg:max-w-60 shrink"
73+
className="lg:w-auto lg:max-w-60 max-h-full"
7374
/>
7475
<span className="font-sans absolute right-5 top-5 leading-none text-white lg:text-2xl">
7576

0 commit comments

Comments
 (0)