Skip to content

Commit ba63872

Browse files
authored
more fixes
1 parent 94ba728 commit ba63872

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

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));
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));
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));
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));
165165
overflow: hidden;
166166
padding: 0 0 42px 0;
167167
box-sizing: border-box;

0 commit comments

Comments
 (0)