Commit eead9d98 authored by Patrik Kotucek's avatar Patrik Kotucek
Browse files

fix: color in light mode

parent e202c50c
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -14,12 +14,12 @@ const card = css`
`

const unread = css`
  border: 1px solid ${Colors.BLUE4} !important;
  box-shadow: inset 3px 0 0 ${Colors.BLUE4};
  border: 1px solid ${Colors.BLUE3} !important;
  border-left: 4px solid ${Colors.BLUE4} !important;

  .${Classes.DARK} & {
    border-color: ${Colors.BLUE3} !important;
    box-shadow: inset 3px 0 0 ${Colors.BLUE3};
    border-left-color: ${Colors.BLUE4} !important;
  }

  &:hover {