Files
gitmost/apps/client/src/pages/dashboard/home.module.css
claude_code b60190ff1e style(dashboard): make home page container responsive padding
Adjust AppShell padding to responsive values and add a CSS module that
handles container top and side padding for different breakpoints,
replacing the previous fixed `pt="xl"` usage.
2026-06-22 03:27:40 +03:00

14 lines
406 B
CSS

.container {
/* Default top padding for tablet/desktop (replaces the former pt="xl") */
padding-top: var(--mantine-spacing-xl);
}
@media (max-width: $mantine-breakpoint-sm) {
.container {
/* On phones drop the extra side padding (AppShell already provides the
outer gap) and shrink the top gap below the header. */
padding-inline: 0;
padding-top: var(--mantine-spacing-xs);
}
}