(feat): add custom css
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

This commit is contained in:
Alois 2026-06-18 22:58:29 +02:00
commit 6ed9ee1109
6 changed files with 57 additions and 30 deletions

View file

@ -1,5 +1,20 @@
import { StylePicker } from "@tensamin/ui";
export default function Page() {
return <StylePicker />;
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>
);
}