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};
|
color: ${(props) => props.theme.sidebar.color};
|
||||||
|
|
||||||
aside {
|
aside {
|
||||||
background-color: ${(props) => props.theme['sidebar-background']};
|
background-color: ${(props) => props.theme.sidebar.bg};
|
||||||
|
|
||||||
.collection-title {
|
.collection-title {
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
@ -21,6 +21,7 @@ const darkTheme = {
|
|||||||
sidebar: {
|
sidebar: {
|
||||||
color: '#ccc',
|
color: '#ccc',
|
||||||
muted: '#9d9d9d',
|
muted: '#9d9d9d',
|
||||||
|
bg: '#252526',
|
||||||
|
|
||||||
workspace: {
|
workspace: {
|
||||||
bg: '#3D3D3D'
|
bg: '#3D3D3D'
|
||||||
|
@ -21,6 +21,7 @@ const lightTheme = {
|
|||||||
sidebar: {
|
sidebar: {
|
||||||
color: 'rgb(52, 52, 52)',
|
color: 'rgb(52, 52, 52)',
|
||||||
muted: '#4b5563',
|
muted: '#4b5563',
|
||||||
|
bg: '#F3F3F3',
|
||||||
|
|
||||||
workspace: {
|
workspace: {
|
||||||
bg: '#e1e1e1'
|
bg: '#e1e1e1'
|
||||||
|
Loading…
Reference in New Issue
Block a user