File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 ">
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments