From 7697cfd9c2e884edb489cfebcae0914a5a2ef8fc Mon Sep 17 00:00:00 2001 From: kashaf-ansari-dev Date: Tue, 16 Jun 2026 07:32:23 +0500 Subject: [PATCH] mobile: fix color spacing notebook filter input Signed-off-by: kashaf-ansari-dev --- .../app/components/side-menu/side-menu-notebooks.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/apps/mobile/app/components/side-menu/side-menu-notebooks.tsx b/apps/mobile/app/components/side-menu/side-menu-notebooks.tsx index 3d8de4a14..8261455fe 100644 --- a/apps/mobile/app/components/side-menu/side-menu-notebooks.tsx +++ b/apps/mobile/app/components/side-menu/side-menu-notebooks.tsx @@ -103,7 +103,7 @@ export const SideMenuNotebooks = () => { const allSelected = allNotebooks.every((notebook) => { return ( useSideMenuNotebookSelectionStore.getState().selection[ - notebook.id + notebook.id ] === "selected" ); }); @@ -176,9 +176,9 @@ export const SideMenuNotebooks = () => { style={{ width: "100%", backgroundColor: colors.primary.background, - borderTopColor: colors.primary.border, + borderTopColor: colors.primary.separator, borderTopWidth: 1, - paddingVertical: DefaultAppStyles.GAP_VERTICAL, + paddingVertical: Spacing.LEVEL_2, flexDirection: "row", justifyContent: "space-between" }} @@ -189,7 +189,8 @@ export const SideMenuNotebooks = () => { fontFamily: "Inter-Regular", fontSize: AppFontSize.sm, paddingTop: 0, - paddingBottom: 0 + paddingBottom: 0, + color: colors.secondary.paragraph }} cursorColor={colors.primary.accent} onChangeText={async (value: string) => {