fix(settings-view): adjust padding and remove unused dialog footer

- Updated padding in the settings view for better layout consistency.
- Removed the unused dialog footer containing the close button to streamline the interface.
This commit is contained in:
Kacper
2025-12-10 23:16:16 +01:00
parent a6da65e318
commit 0d462ba080

View File

@@ -1842,7 +1842,7 @@ export function SettingsView() {
</DialogDescription>
</DialogHeader>
<div className="flex-1 overflow-y-auto space-y-6 py-4">
<div className="flex-1 overflow-y-auto space-y-6 py-4 pl-3 pr-6 pb-6">
{/* Visual Keyboard Map */}
<KeyboardMap />
@@ -1854,15 +1854,6 @@ export function SettingsView() {
<ShortcutReferencePanel editable />
</div>
</div>
<DialogFooter>
<Button
variant="outline"
onClick={() => setShowKeyboardMapDialog(false)}
>
Close
</Button>
</DialogFooter>
</DialogContent>
</Dialog>