mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Fix styling of the labels left menu area
This commit is contained in:
parent
960436377a
commit
6d8645dc12
1 changed files with 8 additions and 3 deletions
|
|
@ -8,7 +8,6 @@ import { useGetSubscriptionsQuery } from '../../../lib/networking/queries/useGet
|
|||
import { useGetLabelsQuery } from '../../../lib/networking/queries/useGetLabelsQuery'
|
||||
import { Label } from '../../../lib/networking/fragments/labelFragment'
|
||||
import { theme } from '../../tokens/stitches.config'
|
||||
import { currentThemeName } from '../../../lib/themeUpdater'
|
||||
import { useRegisterActions } from 'kbar'
|
||||
import { LogoBox } from '../../elements/LogoBox'
|
||||
|
||||
|
|
@ -391,9 +390,15 @@ function LabelButton(props: LabelButtonProps): JSX.Element {
|
|||
pt: '2px', // TODO: hack to middle align
|
||||
width: '100%',
|
||||
height: '30px',
|
||||
fontSize: '16px',
|
||||
|
||||
fontSize: '14px',
|
||||
fontWeight: 'regular',
|
||||
color: '$thTextSubtle',
|
||||
fontFamily: '$display',
|
||||
color:
|
||||
state == 'on'
|
||||
? '$thLibraryMenuSecondary'
|
||||
: '$thLibraryMenuUnselected',
|
||||
|
||||
verticalAlign: 'middle',
|
||||
borderRadius: '3px',
|
||||
cursor: 'pointer',
|
||||
|
|
|
|||
Loading…
Reference in a new issue