Skip to content

Commit

Permalink
rename styles, close with escape (#621)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris authored May 27, 2024
1 parent ab45dc3 commit 88ac017
Showing 1 changed file with 39 additions and 35 deletions.
74 changes: 39 additions & 35 deletions src/routes/tutorial/[slug]/Menu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
$: expanded_chapter = current.chapter.slug;
</script>

<svelte:window on:keydown={(e) => e.key === 'Escape' && (is_open = false)} />

<div
class="container"
class:dark={$theme.current === 'dark'}
Expand All @@ -38,35 +40,33 @@
<Icon name="arrow-left" size={16} />
</a>

<button
class="heading"
on:click={() => ($is_mobile ? open_nav() : (is_open = !is_open))}
class:open={is_open}
>
<h1>
<div class="mobile">
<div class="heading-row">
<strong>{current.title}</strong>
</div>
<div class="heading-row">
<span class="part-title">{current.part.label}</span>
<span class="separator">/</span>
<span class="chapter-title">{current.chapter.title}</span>
<div class="menu" class:open={is_open}>
<button on:click={() => ($is_mobile ? open_nav() : (is_open = !is_open))}>
<h1>
<div class="mobile">
<div class="heading-row">
<strong>{current.title}</strong>
</div>
<div class="heading-row">
<span class="part-title">{current.part.label}</span>
<span class="separator">/</span>
<span class="chapter-title">{current.chapter.title}</span>
</div>
</div>
</div>

<div class="desktop">
<span class="part-title">{current.part.title}</span><span class="separator">/</span>
<span class="chapter-title">{current.chapter.title}</span><span class="separator">/</span
><strong>{current.title}</strong>
</div>
<div class="desktop">
<span class="part-title">{current.part.title}</span><span class="separator">/</span>
<span class="chapter-title">{current.chapter.title}</span><span class="separator">/</span
><strong>{current.title}</strong>
</div>

<span style="flex: 1 1 auto"></span>
</h1>
<span style="flex: 1 1 auto"></span>
</h1>

<span class="expand-icon" class:inverted={is_open}>
<Icon name="chevron-down" />
</span>
<span class="expand-icon" class:inverted={is_open}>
<Icon name="chevron-down" />
</span>
</button>

{#if is_open}
<nav
Expand Down Expand Up @@ -140,7 +140,7 @@
</div>
</nav>
{/if}
</button>
</div>

<a
class="next-button"
Expand Down Expand Up @@ -191,7 +191,7 @@
width: 100%;
}
.heading.open {
.menu.open {
border-radius: var(--sk-border-radius) var(--sk-border-radius) 0 0;
}
Expand All @@ -200,7 +200,7 @@
font-size: var(--sk-text-xs);
}
.heading {
.menu {
font-size: var(--sk-text-s);
border: none;
}
Expand All @@ -209,16 +209,11 @@
color: var(--sk-theme-1);
}
.heading {
.menu {
flex: 1;
position: relative;
display: flex;
justify-content: center;
align-items: center;
gap: 0.4ch;
top: 0.15rem;
height: 100%;
min-width: 0;
Expand All @@ -238,6 +233,15 @@
cursor: pointer;
}
.menu > button {
display: flex;
justify-content: center;
align-items: center;
gap: 0.4ch;
width: 100%;
height: 100%;
}
h1 {
display: flex;
Expand Down Expand Up @@ -414,7 +418,7 @@
}
/* Remove all styles */
.heading {
.menu {
box-shadow: none;
background-color: transparent;
Expand Down

0 comments on commit 88ac017

Please sign in to comment.