One Calendar is a privacy-first calendar web app built with Next.js. It has modern security features, including e2ee, password-protected sharing, and self-destructing share links ๐Ÿ“… calendar.xyehr.cn
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #182 from EvanTechDev/feature/adjust-top-bar-positioning-over-sidebar

Fix top bar overlap with right sidebar and remove divider (pr-14)

authored by

Evan Huang and committed by
GitHub
056beed6 b8c8f607

+3 -2
+3 -2
components/app/calendar.tsx
··· 648 648 }} 649 649 /> 650 650 651 - <div className="flex min-h-0 min-w-0 flex-1 flex-col pr-14"> 651 + <div className="flex min-h-0 min-w-0 flex-1 flex-col"> 652 652 {" "} 653 653 <header className="flex items-center px-4 h-16 border-b relative z-40 bg-background"> 654 + <div className="pointer-events-none absolute right-0 bottom-0 h-px w-14 bg-background" /> 654 655 <div className="flex items-center space-x-4"> 655 656 <Button variant="outline" onClick={toggleSidebar} size="sm"> 656 657 <PanelLeft /> ··· 813 814 /> 814 815 </div> 815 816 </header> 816 - <div className="flex-1 overflow-auto" ref={calendarRef}> 817 + <div className="flex-1 overflow-auto pr-14" ref={calendarRef}> 817 818 {view === "day" && ( 818 819 <DayView 819 820 date={date}