(feat): add reply box to messages
(feat): update methanium ui (fix): user data caching (fix): other random stuff (qol): update todo
This commit is contained in:
parent
53728b7436
commit
6a5236bafe
32 changed files with 722 additions and 394 deletions
|
|
@ -1,7 +1,9 @@
|
|||
import { useIsMobile } from "@methanium/ui";
|
||||
import { SettingsSidebar } from "../layout";
|
||||
|
||||
export default function Page() {
|
||||
const isMobile = useIsMobile();
|
||||
return isMobile && <SettingsSidebar />;
|
||||
return (
|
||||
<div className="h-full md:hidden">
|
||||
<SettingsSidebar mobile />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ export default function Page() {
|
|||
<p>Package Count: {packageCount}</p>
|
||||
</div>
|
||||
<div className="min-h-0 flex-1 max-h-[calc(100vh-180px)] overflow-auto pr-2">
|
||||
<div className="flex flex-col gap-5">
|
||||
<div className="flex flex-col gap-5 p-px">
|
||||
{packages.map((licensePackage) => (
|
||||
<Card
|
||||
className="pb-0!"
|
||||
|
|
|
|||
Loading…
Reference in a new issue