Fix styling: action button overflow and increase API key header height

- Change action button overflow from hidden to visible to fix visual issues
- Increase API key header window height from 220px to 300px for better fit with provider dropdown
This commit is contained in:
Dean Wahle 2025-07-04 12:14:49 -04:00
parent 5e14a32045
commit 773b3bcaa3
2 changed files with 2 additions and 2 deletions

View File

@ -205,7 +205,7 @@ export class ApiKeyHeader extends LitElement {
cursor: pointer; cursor: pointer;
transition: background 0.15s ease; transition: background 0.15s ease;
position: relative; position: relative;
overflow: hidden; overflow: visible;
} }
.action-button::after { .action-button::after {

View File

@ -316,7 +316,7 @@ class HeaderTransitionManager {
if (!window.require) return; if (!window.require) return;
return window return window
.require('electron') .require('electron')
.ipcRenderer.invoke('resize-header-window', { width: 285, height: 220 }) .ipcRenderer.invoke('resize-header-window', { width: 285, height: 300 })
.catch(() => {}); .catch(() => {});
} }