mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-09-01 19:49:54 +02:00
mobile: fix color of + button on hidden items
in side menu
This commit is contained in:
@@ -78,13 +78,13 @@ function ReorderableList<T extends { id: string }>({
|
||||
<View
|
||||
style={{
|
||||
flexDirection: "row",
|
||||
opacity: isHidden ? 0.4 : 1,
|
||||
paddingHorizontal: 12
|
||||
}}
|
||||
>
|
||||
<View
|
||||
style={{
|
||||
flexGrow: 1
|
||||
flexGrow: 1,
|
||||
opacity: isHidden ? 0.4 : 1
|
||||
}}
|
||||
>
|
||||
{renderDraggableItem(info, props)}
|
||||
|
||||
Reference in New Issue
Block a user