fix: fixed missing sidebar bg color

This commit is contained in:
Anoop M D 2022-10-30 04:05:52 +05:30
parent df1cd4aff9
commit 820c99711b
3 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,7 @@ const Wrapper = styled.div`
color: ${(props) => props.theme.sidebar.color};
aside {
background-color: ${(props) => props.theme['sidebar-background']};
background-color: ${(props) => props.theme.sidebar.bg};
.collection-title {
line-height: 1.5;

View File

@ -21,6 +21,7 @@ const darkTheme = {
sidebar: {
color: '#ccc',
muted: '#9d9d9d',
bg: '#252526',
workspace: {
bg: '#3D3D3D'

View File

@ -21,6 +21,7 @@ const lightTheme = {
sidebar: {
color: 'rgb(52, 52, 52)',
muted: '#4b5563',
bg: '#F3F3F3',
workspace: {
bg: '#e1e1e1'