Skip to content

Commit

Permalink
[dagit] Flip section arrow in left nav (#8056)
Browse files Browse the repository at this point in the history
### Summary & Motivation

Flip the arrow to point right instead of left.

### How I Tested These Changes

View Dagit left nav, expand and collapse sections.
  • Loading branch information
hellendag committed May 25, 2022
1 parent 10b9225 commit 10d8e65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js_modules/dagit/packages/core/src/ui/SectionedLeftNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ const SectionHeader = styled.button<{$open: boolean; $showRepoLocation: boolean}
${IconWrapper}[aria-label="arrow_drop_down"] {
transition: transform 100ms linear;
${({$open}) => ($open ? null : `transform: rotate(90deg);`)}
${({$open}) => ($open ? null : `transform: rotate(-90deg);`)}
}
:disabled ${IconWrapper} {
Expand Down

0 comments on commit 10d8e65

Please sign in to comment.