Skip to content

Commit

Permalink
Merge pull request #193 from DavitBakhutashvili/feat/addCardBorder
Browse files Browse the repository at this point in the history
fix: border color changed for white theme
  • Loading branch information
Chkhikvadze authored Oct 2, 2023
2 parents e7fb997 + 2a7275b commit 1c735e9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const StyledTextWrapper = styled.div`
align-items: center;
flex-wrap: wrap;
& > * {
margin-right: 5px;
margin-right: 3px;
}
`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const StyledCard = styled.div`
min-width: 250px;
height: 170px;
min-height: 170px;
border: ${({ theme }) => theme.body.border};
background: rgba(0, 0, 0, 0.2);
/* background: rgba(0, 0, 0, 0.4); */
Expand Down
1 change: 1 addition & 0 deletions apps/ui/src/pages/Toolkit/components/ToolCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ const StyledRoot = styled.div<{ bgImg: string; isDisabled: boolean; isReadOnly:
background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.4) 100%);
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(8px);
border: ${({ theme }) => theme.body.border};
border-radius: 16px;
background-image: ${p =>
p.bgImg &&
Expand Down
2 changes: 1 addition & 1 deletion apps/ui/src/styles/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const lightTheme: DefaultTheme = {
backdropFilter: 'blur(50px);',
textColorPrimary: 'rgb(59, 59, 59)',
textColorSecondary: 'rgb(110,110,110)',
border: '1px solid #D2D2D2',
border: '1px solid #acacad',
backgroundImageSecondary: defaultBgImageSecondary,
testVariableColor: 'var(--color-highlight_blue)',
iconColor: 'rgb(187,187,187)',
Expand Down

0 comments on commit 1c735e9

Please sign in to comment.