[READ-ONLY] 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
nextjs
0

Configure Feed

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

fix: dither background

+1 -4
+1 -4
components/auth/auth-background.tsx
··· 16 16 return <div className="fixed inset-0 -z-10 bg-white dark:bg-black" /> 17 17 } 18 18 19 - const isDark = resolvedTheme === 'dark' 20 - 21 19 return ( 22 20 <div 23 - className="fixed inset-0 -z-10 overflow-hidden" 24 - style={{ filter: isDark ? 'none' : 'invert(1)' }} 21 + style={{ width: '100%', height: '600px', position: 'relative' }} 25 22 > 26 23 <Dither 27 24 waveColor={[0.5, 0.5, 0.5]}