style(site): line the homepage breakpoints up with the VitePress scale

The homepage used 800px and 560px while the theme and custom.css work off
640/768/960. Move to 959px and 639px, which also stacks the two code
panels before they get too narrow to read.
This commit is contained in:
Valentin Maerten
2026-08-30 14:25:45 +02:00
parent b1bd8ffd00
commit bffed9d566

View File

@@ -468,7 +468,7 @@ onUnmounted(() => window.clearTimeout(copyResetTimer));
padding: 0 24px;
}
@media (max-width: 800px) {
@media (max-width: 959px) {
.quick-start,
.choose-path {
padding-top: 4.5rem;
@@ -485,7 +485,7 @@ onUnmounted(() => window.clearTimeout(copyResetTimer));
}
}
@media (max-width: 560px) {
@media (max-width: 639px) {
.home-content {
margin-top: 2.5rem;
}