Skip to content

Commit 50bc0c4

Browse files
committed
hotfix: apply changes for issue in pretalx to scroll properly in desired date of schedule
1 parent 2ce5c29 commit 50bc0c4

3 files changed

Lines changed: 20 additions & 7 deletions

File tree

app/home/templates/home/components/navbar.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
}
1919
</style>
2020
{% endblock %}
21-
<nav class="absolute w-full z-[999]">
22-
<div class="relative flex flex-col">
21+
<nav class="absolute w-full z-[999] pointer-events-none">
22+
<div class="relative flex flex-col pointer-events-auto">
2323
<!-- Ribbon CTA -->
2424
<div class="bg-orange-1 py-1.5 flex items-center justify-center gap-2 flex-col sm:flex-row">
2525
<p class="text-white font-nunito text-sm font-semibold">

app/home/templates/internal/pages/schedule.html

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,15 @@
3232
{% endblock header %}
3333

3434

35-
<div class="w-full px-[4%] pt-40 pb-18 max-w-[1440px] mx-auto">
36-
<div class="w-full">
35+
<div class="w-full px-[4%] pt-40 pb-18 mx-auto max-w-[1440px]">
36+
<div class="w-full" id="schedule-container">
3737
<h2 class="text-5xl my-10 font-bold font-td_pinoy text-orange-2 text-center sm:text-left max-w-7xl mx-auto">Schedule</h2>
38-
<div class="content-body font-nunito text-brown-2 text-lg leading-relaxed w-full overflow-x-auto">
38+
<div class="content-body font-nunito text-brown-2 text-lg leading-relaxed w-full">
3939
<p class="text-brown-2 font-nunito text-center sm:text-left max-w-7xl mx-auto mb-6 italic">Note: This schedule is subject to change. Please check back regularly for updates.</p>
4040

41-
<pretalx-schedule event-url="https://pretalx.com/python-asia-2026/" locale="en" format="grid"></pretalx-schedule>
41+
<div class="min-w-0 w-full">
42+
<pretalx-schedule event-url="https://pretalx.com/python-asia-2026/" locale="en" format="grid"></pretalx-schedule>
43+
</div>
4244
<noscript>
4345
<div class="pretalx-widget">
4446
<div class="pretalx-widget-info-message">
@@ -49,3 +51,14 @@ <h2 class="text-5xl my-10 font-bold font-td_pinoy text-orange-2 text-center sm:t
4951
</div>
5052
</div>
5153
</div>
54+
55+
<script>
56+
document.addEventListener('DOMContentLoaded', function() {
57+
setTimeout(() => {
58+
const scheduleContainer = document.getElementById('schedule-container');
59+
if (scheduleContainer) {
60+
scheduleContainer.style.overflowX = 'auto';
61+
}
62+
}, 1000);
63+
});
64+
</script>

static/css/app.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)