From cf4e505743a9c7a442ba8870dcfa5eda774aa862 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Mon, 15 Dec 2025 21:36:27 -0800 Subject: [PATCH] prevent action bar icons from being squished on resize --- .../features/sidebar/components/action-bar.tsx | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/renderer/features/sidebar/components/action-bar.tsx b/src/renderer/features/sidebar/components/action-bar.tsx index ce18a0412..f1ced9f9c 100644 --- a/src/renderer/features/sidebar/components/action-bar.tsx +++ b/src/renderer/features/sidebar/components/action-bar.tsx @@ -5,6 +5,7 @@ import styles from './action-bar.module.css'; import { AppMenu } from '/@/renderer/features/titlebar/components/app-menu'; import { useCommandPalette } from '/@/renderer/store'; +import { ActionIcon } from '/@/shared/components/action-icon/action-icon'; import { Button } from '/@/shared/components/button/button'; import { DropdownMenu } from '/@/shared/components/dropdown-menu/dropdown-menu'; import { Grid } from '/@/shared/components/grid/grid'; @@ -41,9 +42,7 @@ export const ActionBar = () => { - + @@ -62,12 +61,8 @@ const NavigateButtons = () => { return ( <> - - + navigate(-1)} /> + navigate(1)} /> ); };