mobile: fix color spacing notebook filter input

Signed-off-by: kashaf-ansari-dev <kashafansari3108@gmail.com>
This commit is contained in:
kashaf-ansari-dev
2026-06-16 07:32:23 +05:00
committed by Ammar Ahmed
parent 9db2bd2b3c
commit 7697cfd9c2

View File

@@ -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) => {