Update electron builder and fix mobile terminal background

This commit is contained in:
LukeGus
2025-09-10 01:11:11 -05:00
parent 4b7cb03f7a
commit 9d84469ea3
11 changed files with 5585 additions and 50 deletions

View File

@@ -537,13 +537,12 @@ export function LeftSidebar({
</div>
<div
className="flex-1"
className="flex-1 cursor-pointer"
onClick={() => {
setDeleteAccountOpen(false);
setDeletePassword("");
setDeleteError(null);
}}
className="cursor-pointer"
/>
</div>
)}

View File

@@ -152,7 +152,7 @@ export const Terminal = forwardRef<any, SSHTerminalProps>(function SSHTerminal(
scrollback: 10000,
fontSize: 14,
fontFamily: '"JetBrains Mono Nerd Font", "MesloLGS NF", "FiraCode Nerd Font", "Cascadia Code", "JetBrains Mono", Consolas, "Courier New", monospace',
theme: {background: 'var(--color-dark-bg-darkest)', foreground: '#f7f7f7'},
theme: {background: '#09090b', foreground: '#f7f7f7'},
allowTransparency: true,
convertEol: true,
windowsMode: false,

View File

@@ -742,7 +742,7 @@ export function HomepageAuth({
</div>
<div className="flex flex-col gap-2">
<Label htmlFor="password">{t('common.password')}</Label>
<PasswordInput id="password" required className="h-55 text-base"
<PasswordInput id="password" required className="h-11 text-base"
value={password} onChange={e => setPassword(e.target.value)}
disabled={loading || internalLoggedIn}/>
</div>