Skip to content

Commit

Permalink
Merge pull request #1601 from ever-co/bug/teams-dropdown-timer-screen
Browse files Browse the repository at this point in the history
fixed the timer screen teams dropdown non active teams positioning
  • Loading branch information
evereq authored Oct 20, 2023
2 parents 9946bb1 + f46e671 commit cc45b01
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 cc45b01

Please sign in to comment.