We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 158a806 commit 736b221Copy full SHA for 736b221
apps/svelte.dev/src/routes/tutorial/[...slug]/+page.svelte
@@ -279,9 +279,9 @@
279
<SplitPane
280
id="editor"
281
type={mobile ? 'vertical' : 'horizontal'}
282
- min="120px"
283
- max="300px"
284
- pos="200px"
+ min={mobile ? '40px' : '120px'}
+ max={mobile ? '40px' : '300px'}
+ pos={mobile ? '40px' : '200px'}
285
>
286
{#snippet a()}
287
<section class="navigator">
@@ -415,16 +415,9 @@
415
background-color: var(--sk-bg-3);
416
}
417
418
- .mobile .navigator {
419
- display: flex;
420
- flex-direction: row;
421
- align-items: center;
422
- padding: 1rem;
423
- gap: 1rem;
424
- }
425
-
426
.mobile .navigator .file {
427
flex: 1;
+ padding: 1rem;
428
text-align: left;
429
white-space: nowrap;
430
overflow: hidden;
0 commit comments