Fix first month free callout styles in dark mode

This commit is contained in:
Ilango 2025-06-18 15:18:54 +05:30
parent 36c872f2de
commit 764cc6c144
1 changed files with 2 additions and 2 deletions

View File

@ -523,8 +523,8 @@ const PricingDialog = ({ open, onClose }) => {
<Box
sx={{
p: 1.5,
bgcolor: 'warning.light',
color: 'warning.dark',
bgcolor: customization.isDarkMode ? 'success.dark' : 'success.light',
color: customization.isDarkMode ? 'success.light' : 'success.dark',
borderRadius: 1,
display: 'flex',
alignItems: 'center',