Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat new design #158

Merged
merged 18 commits into from
Aug 31, 2020
Prev Previous commit
Next Next commit
feat: proto
  • Loading branch information
h13i32maru committed Aug 30, 2020
commit 8d52c1efcc588f17f5da8ce2498d137793060744
5 changes: 4 additions & 1 deletion src/Renderer/Library/View/IssueRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ export class IssueRow extends React.Component<Props, State> {
<TitleText>{this.props.issue.value.title}</TitleText>
</Title>
</Body>
)
);
}

private renderAttributes() {
Expand Down Expand Up @@ -452,8 +452,11 @@ const fadein = keyframes`
const Root = styled(ClickView)`
position: relative;
border-bottom: solid ${border.medium}px ${() => appTheme().borderColor};
_margin: ${space.medium2}px;
_border-radius: 4px;

&.issue-unread {
_box-shadow: 0 0 4px 0 #00000020;
}

&.issue-read {
Expand Down