Skip to content

Commit 792ddfd

Browse files
committed
Autoformat and remove nonexistend xs: breakpoint
1 parent 4ddf366 commit 792ddfd

File tree

4 files changed

+17
-10
lines changed

4 files changed

+17
-10
lines changed

src/app/conf/2023/sessions/[id]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export default function SessionPage({ params }: SessionProps) {
9292
<div className="bg-[#f4f6f8]">
9393
<div className="container">
9494
<div className="py-10">
95-
<section className="mx-auto min-h-[80vh] flex-col justify-center px-2 text-[#333333] md:container xs:px-0 lg:justify-between">
95+
<section className="mx-auto min-h-[80vh] flex-col justify-center px-2 text-[#333333] md:container lg:justify-between">
9696
<div className="flex flex-col lg:px-0">
9797
<BackLink year="2023" kind="sessions" />
9898
{recordingTitle.rating > 0.5 && (

src/app/conf/2024/schedule/[id]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export default function SessionPage({ params }: SessionProps) {
110110
<div className="bg-[#f4f6f8]">
111111
<div className="container">
112112
<div className="py-10">
113-
<section className="mx-auto min-h-[80vh] flex-col justify-center px-2 text-[#333333] md:container xs:px-0 lg:justify-between">
113+
<section className="mx-auto min-h-[80vh] flex-col justify-center px-2 text-[#333333] md:container lg:justify-between">
114114
<BackLink year="2024" kind="schedule" />
115115
<iframe
116116
className="mx-auto mt-6 aspect-video w-full max-w-4xl rounded-md"

src/app/conf/2024/speakers/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default function Page() {
1010
return (
1111
<div className='bg-[url("/img/conf/golden-gate-bridge.png")] bg-contain bg-no-repeat'>
1212
<div className="flex w-full justify-center">
13-
<div className="prose px-2 py-20 md:container lg:prose-lg xs:px-0">
13+
<div className="prose px-2 py-20 md:container lg:prose-lg">
1414
<h1 className="text-white">GraphQLConf 2024 Speakers</h1>
1515
<p className="text-white sm:w-2/3">
1616
Meet the unique lineup of insightful speakers we've carefully

src/globals.css

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
}
1818

1919
.conf-hero {
20-
background: linear-gradient(
20+
background:
21+
linear-gradient(
2122
360deg,
2223
#0e031c 10.63%,
2324
#0e031c 10.65%,
@@ -228,7 +229,8 @@ div[id^="headlessui-menu-items"] {
228229
}
229230

230231
.code-page {
231-
background: linear-gradient(
232+
background:
233+
linear-gradient(
232234
303.75deg,
233235
rgba(124, 124, 124, 0.2) 0.8%,
234236
rgba(124, 124, 124, 0) 74.17%
@@ -237,7 +239,8 @@ div[id^="headlessui-menu-items"] {
237239
}
238240

239241
.dark .code-page {
240-
background: linear-gradient(
242+
background:
243+
linear-gradient(
241244
303.75deg,
242245
rgba(124, 124, 124, 0.2) 0.8%,
243246
rgba(124, 124, 124, 0) 74.17%
@@ -246,7 +249,8 @@ div[id^="headlessui-menu-items"] {
246249
}
247250

248251
.dark .blog-page {
249-
background: linear-gradient(
252+
background:
253+
linear-gradient(
250254
250.93deg,
251255
rgba(115, 119, 125, 0.1),
252256
rgba(115, 119, 125, 0)
@@ -255,7 +259,8 @@ div[id^="headlessui-menu-items"] {
255259
}
256260

257261
.blog-page {
258-
background: linear-gradient(
262+
background:
263+
linear-gradient(
259264
231.79deg,
260265
rgba(225, 0, 152, 0.4) -23.67%,
261266
rgba(225, 0, 152, 0) 25.9%
@@ -388,15 +393,17 @@ div[id^="headlessui-menu-items"] {
388393
}
389394

390395
.index-bg {
391-
background: linear-gradient(
396+
background:
397+
linear-gradient(
392398
303.75deg,
393399
rgba(124, 124, 124, 0.2) 0.8%,
394400
rgba(124, 124, 124, 0) 74.17%
395401
),
396402
linear-gradient(0deg, #f8f8f8, #f8f8f8);
397403

398404
.dark & {
399-
background: linear-gradient(0deg, #111, #111),
405+
background:
406+
linear-gradient(0deg, #111, #111),
400407
linear-gradient(
401408
303.75deg,
402409
rgba(124, 124, 124, 0.2) 0.8%,

0 commit comments

Comments
 (0)