Skip to content

Commit

Permalink
Merge pull request #586 from tomoam/update-up-to-20230924
Browse files Browse the repository at this point in the history
2023/09/24 迄の更新に追従
  • Loading branch information
tomoam committed Sep 25, 2023
2 parents 71df43f + c631eba commit b02e21c
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions sites/svelte.dev/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
"@resvg/resvg-js": "^2.4.1",
"@sveltejs/adapter-vercel": "^3.0.3",
"@sveltejs/kit": "^1.24.1",
"@sveltejs/site-kit": "6.0.0-next.47",
"@sveltejs/site-kit": "6.0.0-next.50",
"@sveltejs/vite-plugin-svelte": "^2.4.6",
"@tomoam/site-kit": "6.0.0-next.47",
"@tomoam/site-kit": "6.0.0-next.50",
"@types/cookie": "^0.5.2",
"@types/node": "^20.5.9",
"browserslist": "^4.21.10",
Expand Down
4 changes: 2 additions & 2 deletions sites/svelte.dev/src/routes/(authed)/repl/[id]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@
<style>
.repl-outer {
position: relative;
height: calc(100% - var(--sk-nav-height));
height: calc(100dvh - var(--sk-nav-height));
height: calc(100% - var(--sk-nav-height) - var(--sk-banner-bottom-height));
height: calc(100dvh - var(--sk-nav-height) - var(--sk-banner-bottom-height));
--app-controls-h: 5.6rem;
--pane-controls-h: 4.2rem;
overflow: hidden;
Expand Down
2 changes: 1 addition & 1 deletion sites/svelte.dev/src/routes/blog/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
.posts {
grid-template-columns: 1fr 1fr;
grid-gap: 1em;
min-height: calc(100vh - var(--sk-nav-height));
min-height: calc(100vh - var(--sk-nav-height) - var(--sk-banner-bottom-height));
padding: var(--sk-page-padding-top) var(--sk-page-padding-side) 6rem var(--sk-page-padding-side);
max-width: var(--sk-page-main-width);
margin: 0 auto;
Expand Down
2 changes: 1 addition & 1 deletion sites/svelte.dev/src/routes/docs/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
.toc-container {
display: block;
width: var(--sidebar-width);
height: calc(100vh - var(--sk-nav-height));
height: calc(100vh - var(--sk-nav-height) - var(--sk-banner-bottom-height));
position: fixed;
left: 0;
top: var(--sk-nav-height);
Expand Down
2 changes: 1 addition & 1 deletion sites/svelte.dev/src/routes/examples/[slug]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<style>
.examples-container {
position: relative;
height: calc(100vh - var(--sk-nav-height));
height: calc(100vh - var(--sk-nav-height) - var(--sk-banner-bottom-height));
overflow: hidden;
padding: 0 0 42px 0;
box-sizing: border-box;
Expand Down
2 changes: 1 addition & 1 deletion sites/svelte.dev/src/routes/tutorial/[slug]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
<style>
.tutorial-outer {
position: relative;
height: calc(100vh - var(--sk-nav-height));
height: calc(100vh - var(--sk-nav-height) - var(--sk-banner-bottom-height));
overflow: hidden;
padding: 0 0 42px 0;
box-sizing: border-box;
Expand Down

0 comments on commit b02e21c

Please sign in to comment.