Skip to content

Commit

Permalink
fixed the timer screen teams dropdown non active teams positioning
Browse files Browse the repository at this point in the history
  • Loading branch information
desperado1802 committed Oct 20, 2023
1 parent 93a0f1d commit f46e671
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion apps/mobile/app/components/TeamDropdown/DropDownSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,13 @@ const DropDownSection: FC<Props> = observer(function DropDownSection({
data={others}
scrollEnabled={false}
renderItem={({ item, index }) => (
<View style={{ width: "100%", justifyContent: "center", alignItems: "center" }}>
<View
style={{
width: resized ? "100%" : "90%",
justifyContent: "center",
alignItems: "center",
}}
>
<DropItem
key={index}
team={item}
Expand Down

0 comments on commit f46e671

Please sign in to comment.