forked from extern/bruno
fix: fixed missing sidebar bg color
This commit is contained in:
parent
df1cd4aff9
commit
820c99711b
@ -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;
|
||||
|
@ -21,6 +21,7 @@ const darkTheme = {
|
||||
sidebar: {
|
||||
color: '#ccc',
|
||||
muted: '#9d9d9d',
|
||||
bg: '#252526',
|
||||
|
||||
workspace: {
|
||||
bg: '#3D3D3D'
|
||||
|
@ -21,6 +21,7 @@ const lightTheme = {
|
||||
sidebar: {
|
||||
color: 'rgb(52, 52, 52)',
|
||||
muted: '#4b5563',
|
||||
bg: '#F3F3F3',
|
||||
|
||||
workspace: {
|
||||
bg: '#e1e1e1'
|
||||
|
Loading…
Reference in New Issue
Block a user