Every Sirius.X page had a leftover
@media (min-width: 721px) { header.hero, .wrap { padding-left: calc(var(--sn-w) + 1.2rem) } }
that shifted the whole reading column right by the sidebar width. On a
1400px viewport that pushed the "Names on the chain" hero and every
section off-axis — the search input, the Try it cards, the Pantheon
grid all sat right of centre while the sidebar hogged the empty left
gutter. The sidenav is a pointer-events:none overlay at opacity 0.35
now, so text peeking under the semi-transparent rail is by design;
padding the content away from it defeats the whole point of an
overlay design and creates the shifted-body layout the user flagged
in the screenshot.
Removed on index, tld, docs, admin, brand and theseus/. Content
returns to the middle of the viewport regardless of sidebar width.
27 lines
1 KiB
HTML
27 lines
1 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<!--
|
|
Redirect stub. This file exists only so any bookmark or link pointing at
|
|
/sirius-x/market.html (or /market with the .html-elided rewrite) resolves
|
|
to the real page at /sirius-x/market/. The stub must NEVER render its own
|
|
content — otherwise other-language sessions see an English flash before
|
|
the redirect completes. The <script> below runs during head parsing and
|
|
calls location.replace() before the body is built, so nothing paints.
|
|
Style hides the fallback link and title in the rare no-JS + no-refresh
|
|
path so the transition is invisible there too.
|
|
-->
|
|
<script>
|
|
// Preserve query + hash so ?lang=de and #anchors survive the bounce.
|
|
location.replace("./market/" + location.search + location.hash);
|
|
</script>
|
|
<meta http-equiv="refresh" content="0; url=./market/">
|
|
<style>html,body{background:#050810;color:#050810}body>*{visibility:hidden}</style>
|
|
<link rel="canonical" href="./market/">
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<p>Moved to <a href="./market/">./market/</a>.</p>
|
|
</body>
|
|
</html>
|