Skip to content

Commit fa89421

Browse files
irshaddummdidumm
andauthored
fix(repl): runes bottom banner overlapping fixed (#9238)
--------- Co-authored-by: Simon H <[email protected]> Co-authored-by: Simon Holthausen <[email protected]>
1 parent 666d70a commit fa89421

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

pnpm-lock.yaml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sites/svelte.dev/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@resvg/resvg-js": "^2.4.1",
3131
"@sveltejs/adapter-vercel": "^3.0.3",
3232
"@sveltejs/kit": "^1.24.1",
33-
"@sveltejs/site-kit": "6.0.0-next.47",
33+
"@sveltejs/site-kit": "6.0.0-next.50",
3434
"@sveltejs/vite-plugin-svelte": "^2.4.6",
3535
"@types/cookie": "^0.5.2",
3636
"@types/node": "^20.5.9",

sites/svelte.dev/src/routes/(authed)/repl/[id]/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@
104104
<style>
105105
.repl-outer {
106106
position: relative;
107-
height: calc(100% - var(--sk-nav-height));
108-
height: calc(100dvh - var(--sk-nav-height));
107+
height: calc(100% - var(--sk-nav-height) - var(--sk-banner-bottom-height));
108+
height: calc(100dvh - var(--sk-nav-height) - var(--sk-banner-bottom-height));
109109
--app-controls-h: 5.6rem;
110110
--pane-controls-h: 4.2rem;
111111
overflow: hidden;

sites/svelte.dev/src/routes/blog/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
.posts {
3535
grid-template-columns: 1fr 1fr;
3636
grid-gap: 1em;
37-
min-height: calc(100vh - var(--sk-nav-height));
37+
min-height: calc(100vh - var(--sk-nav-height) - var(--sk-banner-bottom-height));
3838
padding: var(--sk-page-padding-top) var(--sk-page-padding-side) 6rem var(--sk-page-padding-side);
3939
max-width: var(--sk-page-main-width);
4040
margin: 0 auto;

sites/svelte.dev/src/routes/docs/+layout.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
.toc-container {
7171
display: block;
7272
width: var(--sidebar-width);
73-
height: calc(100vh - var(--sk-nav-height));
73+
height: calc(100vh - var(--sk-nav-height) - var(--sk-banner-bottom-height));
7474
position: fixed;
7575
left: 0;
7676
top: var(--sk-nav-height);

sites/svelte.dev/src/routes/examples/[slug]/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
<style>
6666
.examples-container {
6767
position: relative;
68-
height: calc(100vh - var(--sk-nav-height));
68+
height: calc(100vh - var(--sk-nav-height) - var(--sk-banner-bottom-height));
6969
overflow: hidden;
7070
padding: 0 0 42px 0;
7171
box-sizing: border-box;

sites/svelte.dev/src/routes/tutorial/[slug]/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
<style>
162162
.tutorial-outer {
163163
position: relative;
164-
height: calc(100vh - var(--sk-nav-height));
164+
height: calc(100vh - var(--sk-nav-height) - var(--sk-banner-bottom-height));
165165
overflow: hidden;
166166
padding: 0 0 42px 0;
167167
box-sizing: border-box;

0 commit comments

Comments
 (0)