Skip to content

Commit fb76a03

Browse files
author
Leshe4ka
committed
Dark theme background fix.
1 parent c8e3efe commit fb76a03

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

frontend/src/components/PageContainer/PageContainer.styled.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export const Sidebar = styled.div<{ $visible: boolean }>(
3838
overflow-y: auto;
3939
transition: width 0.25s, opacity 0.25s, transform 0.25s,
4040
-webkit-transform 0.25s;
41-
background: ${theme.layout.mainBackgroundColor};
41+
background: ${theme.default.backgroundColor};
4242
transform: ${$visible ? 'translateX(0)' : 'translateX(-100%)'};
4343
4444
@media screen and (max-width: 1024px) {

frontend/src/theme/theme.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ export const theme = {
352352
color: {
353353
normal: Colors.neutral[90],
354354
},
355-
backgroundColor: Colors.neutral[0],
355+
backgroundColor: Colors.brand[0],
356356
transparentColor: 'transparent',
357357
},
358358
link: {
@@ -836,7 +836,7 @@ export const darkTheme: ThemeType = {
836836
color: {
837837
normal: Colors.neutral[0],
838838
},
839-
backgroundColor: Colors.neutral[90],
839+
backgroundColor: Colors.brand[90],
840840
transparentColor: 'transparent',
841841
},
842842
link: {

0 commit comments

Comments
 (0)