tangled
alpha
login
or
join now
cosmik.network
/
semble
43
fork
atom
A social knowledge tool for researchers built on ATProto
43
fork
atom
overview
issues
13
pulls
pipelines
feat: remove auto theme switch
Pouria Delfanazari
4 months ago
59152b14
09debb9d
+2
-2
2 changed files
expand all
collapse all
unified
split
src
webapp
app
layout.tsx
providers
mantine.tsx
+1
-1
src/webapp/app/layout.tsx
···
26
26
{...mantineHtmlProps}
27
27
>
28
28
<head>
29
29
-
<ColorSchemeScript defaultColorScheme="light" />
29
29
+
<ColorSchemeScript forceColorScheme="light" />
30
30
</head>
31
31
<body className={GlobalStyles.main}>
32
32
<Providers>{children}</Providers>
+1
-1
src/webapp/providers/mantine.tsx
···
12
12
13
13
export default function MantineProvider(props: Props) {
14
14
return (
15
15
-
<BaseProvider theme={theme} defaultColorScheme="light">
15
15
+
<BaseProvider theme={theme} forceColorScheme="light">
16
16
<Notifications position="bottom-right" />
17
17
{props.children}
18
18
</BaseProvider>