Skip to content

ui+connect: minor connect view styling updates #403

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

Merged
merged 1 commit into from
Aug 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/src/components/connect/SessionRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const ROW_HEIGHT = 60;

const Styled = {
Row: styled(Row)`
border-bottom: 0.5px solid ${props => props.theme.colors.darkGray};
border-bottom: 0.5px solid ${props => props.theme.colors.lightBlue};

&:last-child {
border-bottom-width: 0;
Expand Down Expand Up @@ -47,7 +47,7 @@ const Styled = {
}
`,
CloseIcon: styled(Close)`
color: ${props => props.theme.colors.pink};
color: ${props => props.theme.colors.lightningRed};
`,
};

Expand Down
1 change: 1 addition & 0 deletions app/src/components/theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const theme: Theme = {
gradient: 'linear-gradient(325.53deg, #252F4A 0%, #46547B 100%);',
lightBlue: '#384770',
paleBlue: '#2E3A5C',
lightningRed: '#EF4444',
},
};

Expand Down
1 change: 1 addition & 0 deletions app/src/emotion-theme.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ declare module '@emotion/react' {
gradient: string;
lightBlue: string;
paleBlue: string;
lightningRed: string;
};
}
}