client/apps/web/src/routes/settings/theme.tsx
Alois 6ed9ee1109
Some checks failed
/ build-desktop (linux) (push) Failing after 52s
/ build-web (push) Failing after 57s
/ build-mobile (push) Failing after 59s
/ release (push) Has been skipped
(feat): add custom css
2026-06-18 22:58:29 +02:00

20 lines
560 B
TypeScript

import { StylePicker } from "@tensamin/ui";
export default function Page() {
return (
<div className="overflow-y-auto">
<StylePicker />
<div className="absolute bottom-0 right-0 mb-3 mr-2">
<a
className="block w-60 text-xs whitespace-pre-wrap"
href="https://git.methanium.net/tensamin/client/issues/new"
target="_blank"
rel="noreferrer"
>
Please open a Git issue to help us improve this feature. We want to
get it right.
</a>
</div>
</div>
);
}