0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00
This commit is contained in:
Richard Harris 2019-04-09 09:35:29 -04:00
parent b96715f812
commit 2e2abe635d
2 changed files with 7 additions and 1 deletions

View File

@ -4,12 +4,15 @@
<style>
.toggle {
position: fixed;
bottom: 0;
width: 100%;
height: 42px;
display: flex;
justify-content: center;
align-items: center;
border-top: 1px solid var(--second);
background-color: white;
}
button {

View File

@ -116,7 +116,10 @@
padding: 0;
/* margin: 0 calc(var(--side-nav) * -1); */
box-sizing: border-box;
}
.tutorial-outer.mobile {
padding: 0 0 42px 0;
}
.viewport {
@ -129,7 +132,7 @@
.mobile .viewport {
width: 300%;
height: calc(100% - 42px);
height: 100%;
grid-template-columns: 33.333% 66.666%;
transition: transform 0.3s;
}