Commit 207653f9 authored by Marek Veselý's avatar Marek Veselý
Browse files

fix: light mode tool usage label

parent ab56d5b1
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
import { Colors } from '@blueprintjs/colors'
import { Card } from '@blueprintjs/core'
import { Card, Classes } from '@blueprintjs/core'
import { css } from '@emotion/css'
import type { FC } from 'react'

const label = css`
  background-color: ${Colors.LIGHT_GRAY5} !important;
  .${Classes.DARK} & {
    background-color: ${Colors.DARK_GRAY4} !important;
  }

  box-shadow: none !important;

  padding: 0 0 0 0.5rem;
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ export const sticky = css`
  z-index: 1;
  position: sticky;
  top: 0;
  background-color: ${Colors.WHITE};
  background-color: ${Colors.LIGHT_GRAY5};

  .${Classes.DARK} & {
    background-color: ${Colors.DARK_GRAY4};