Skip to content

Commit 5ec9321

Browse files
committed
fix(bug-state): dropdown UI
1 parent 25f41b0 commit 5ec9321

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/common/components/BugStateIcon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import styled from 'styled-components';
44
export const BugStateIcon = styled(CircleFill)<{ height?: string }>`
55
width: auto;
66
height: 100%;
7-
max-height: 13px;
7+
max-height: 11px;
88
margin: 0 2px;
99
overflow: visible;
1010
stroke-width: 2;

src/pages/Bugs/Content/BugPreview.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export const BugPreview = ({
7474

7575
const GridWrapper = styled.div`
7676
display: grid;
77-
grid-template-columns: 1fr 1fr;
77+
grid-template-columns: 50% 50%;
7878
column-gap: ${({ theme }) => theme.space.sm};
7979
`;
8080

@@ -86,8 +86,8 @@ export const BugPreview = ({
8686
<BugMeta bug={bug} />
8787
<AnchorButtons bug={bug} scrollerBoxId={scrollerBoxId} />
8888
<GridWrapper>
89-
<BugPriority bug={bug} />
9089
<BugStateDropdown bug={bug} />
90+
<BugPriority bug={bug} />
9191
</GridWrapper>
9292
<BugDescription bug={bug} />
9393
{media && media.length ? <BugAttachments bug={bug} /> : null}

0 commit comments

Comments
 (0)