test commit

This commit is contained in:
Kirill
2026-05-19 10:30:05 +05:00
parent 9999b28d49
commit c25b4f97f2
6 changed files with 247 additions and 104 deletions
+4 -4
View File
@@ -34,7 +34,7 @@ export function MainLayout({ children }: PropsWithChildren) {
>
<Container maxWidth="lg">
<Grid container spacing={4}>
<Grid size={{ xs: 12, sm: 4 }}>
<Grid size={{ xs: 12, sm: 6, md: 3 }}>
<Typography variant="subtitle1" gutterBottom sx={{ fontWeight: 600, letterSpacing: '-0.25px' }}>
Магазин
</Typography>
@@ -47,7 +47,7 @@ export function MainLayout({ children }: PropsWithChildren) {
</Typography>
</Stack>
</Grid>
<Grid size={{ xs: 12, sm: 4 }}>
<Grid size={{ xs: 12, sm: 6, md: 3 }}>
<Typography variant="subtitle1" gutterBottom sx={{ fontWeight: 600, letterSpacing: '-0.25px' }}>
Покупателям
</Typography>
@@ -63,7 +63,7 @@ export function MainLayout({ children }: PropsWithChildren) {
</Link>
</Stack>
</Grid>
<Grid size={{ xs: 12, sm: 4 }}>
<Grid size={{ xs: 12, sm: 6, md: 3 }}>
<Typography variant="subtitle1" gutterBottom sx={{ fontWeight: 600, letterSpacing: '-0.25px' }}>
Контакты
</Typography>
@@ -94,7 +94,7 @@ export function MainLayout({ children }: PropsWithChildren) {
</Link>
</Stack>
</Grid>
<Grid size={{ xs: 12, sm: 4 }}>
<Grid size={{ xs: 12, sm: 6, md: 3 }}>
<Typography variant="subtitle1" gutterBottom sx={{ fontWeight: 600, letterSpacing: '-0.25px' }}>
Юридическая информация
</Typography>
+8 -8
View File
@@ -73,18 +73,18 @@ function AppThemeInner({ children }: PropsWithChildren) {
default:
return {
...common,
primary: { main: isDark ? '#A0522D' : '#8B4513' },
secondary: { main: isDark ? '#D2B48C' : '#DEB887' },
info: { main: isDark ? '#6495ED' : '#4169E1' },
success: { main: isDark ? '#9ACD32' : '#6B8E23' },
warning: { main: isDark ? '#F4A460' : '#CD853F' },
error: { main: isDark ? '#DC143C' : '#B22222' },
primary: { main: isDark ? '#90A4AE' : '#546E7A' },
secondary: { main: isDark ? '#78909C' : '#78909C' },
info: { main: isDark ? '#7986CB' : '#3F51B5' },
success: { main: isDark ? '#66BB6A' : '#43A047' },
warning: { main: isDark ? '#FFB74D' : '#F57C00' },
error: { main: isDark ? '#EF5350' : '#D32F2F' },
divider: isDark ? 'rgba(255,255,255,0.12)' : 'rgba(0,0,0,0.08)',
text,
chip,
background: isDark
? { default: '#1A1410', paper: '#251E17' }
: { default: '#FAF9F6', paper: '#FFFFFF' },
? { default: '#121212', paper: '#1E1E1E' }
: { default: '#F5F5F5', paper: '#FFFFFF' },
}
}
})(),