mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-09-01 19:49:54 +02:00
mobile: fix color spacing notebook filter input
Signed-off-by: kashaf-ansari-dev <kashafansari3108@gmail.com>
This commit is contained in:
committed by
Ammar Ahmed
parent
887cb1a27f
commit
beb28d027c
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user