various improvements

This commit is contained in:
yohlo
2025-09-17 09:02:20 -05:00
parent c170e1e1fe
commit 498010e3e2
25 changed files with 733 additions and 643 deletions

View File

@@ -5,6 +5,8 @@ import { memo } from "react";
interface SettingButtonProps {
to: string;
top?: number;
right?: number;
}
const SettingsButton = ({ to }: SettingButtonProps) => {
@@ -15,8 +17,8 @@ const SettingsButton = ({ to }: SettingButtonProps) => {
style={{ cursor: 'pointer', zIndex: 1000 }}
onClick={() => navigate({ to })}
pos='absolute'
right={16}
top={0}
right={20}
top={6}
>
<GearIcon weight='bold' size={20} />
</Box>