feat: sync action description box dark mode bg

This commit is contained in:
amhsirak
2025-10-13 17:49:14 +05:30
parent c8582c6426
commit bdf726dcc5

View File

@@ -16,7 +16,7 @@ const CustomBoxContainer = styled.div<CustomBoxContainerProps>`
min-height: 100px;
height: auto;
border-radius: 5px;
background-color: ${({ isDarkMode }) => (isDarkMode ? '#313438' : 'white')};
background-color: ${({ isDarkMode }) => (isDarkMode ? '#1d1c1cff' : 'white')};
color: ${({ isDarkMode }) => (isDarkMode ? 'white' : 'black')};
margin: 80px 13px 25px 13px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);