mobile: fix color of + button on hidden items

in side menu
This commit is contained in:
Ammar Ahmed
2024-02-23 12:10:19 +05:00
parent b0d6514a5e
commit 2c2cf2e8bb

View File

@@ -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)}