Skip to content

Commit 786ebd1

Browse files
committed
Remove top navigation (#1487)
The website menu has been removed from the header as per AB's request.
1 parent 3d8ea3d commit 786ebd1

File tree

8 files changed

+14
-22
lines changed

8 files changed

+14
-22
lines changed

source/_static/js/main.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,9 @@ window.addEventListener("DOMContentLoaded", (event) => {
9797
readModeLs = localStorage.getItem("read-mode");
9898

9999
if (window.innerWidth < 1280) {
100-
if (readModeLs == null || readModeLs == "false") {
101-
document.documentElement.classList.add("read-mode");
102-
}
100+
document.documentElement.classList.add("read-mode");
103101
} else {
104-
if (readModeLs == "false") {
105-
document.documentElement.classList.remove("read-mode");
106-
}
102+
document.documentElement.classList.remove("read-mode");
107103
}
108104

109105
// Re-calculate sidebar height

source/_static/scss/includes/_aside.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ div.sidebar {
1010
top: 0;
1111
background-color: $white;
1212
transition: opacity 400ms, transform 300ms;
13-
//padding: var(--content-padding);
14-
padding: 0;
13+
padding-top: var(--content-padding);
1514
overflow-y: auto;
1615
height: 100vh;
1716
z-index: $z-index-header - 2;

source/_static/scss/includes/_header.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,13 +185,13 @@
185185
}
186186

187187
.header__title {
188-
font-size: clamp(40px, 6vw, 72px);
188+
font-size: clamp(40px, 6vw, 60px);
189189
line-height: 1.2;
190190
color: $black;
191-
padding-bottom: 5rem;
191+
padding-bottom: 2rem;
192192
margin-left: -0.25rem;
193193
font-family: $font-family-heading;
194-
margin-top: 5rem;
194+
margin-top: 2rem;
195195
text-align: center;
196196
}
197197

source/_static/scss/includes/_layout.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
.content__main {
2929
flex: 1;
3030
min-width: 0;
31-
padding: 0 var(--content-padding) var(--content-padding);
31+
padding: var(--content-padding);
3232
}
3333

3434
.container {

source/_static/scss/includes/_nav.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,10 @@ a.nav__sub {
383383
.platform-nav {
384384
font-size: $font-size-md;
385385
position: relative;
386-
margin-bottom: 2rem;
386+
387+
@include breakpoint-min(breakpoints(lg)) {
388+
margin-bottom: 2rem;
389+
}
387390

388391
.search-toggle {
389392
margin-left: auto;

source/_static/scss/includes/_search.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363

6464
isolation: isolate;
6565
position: relative;
66-
margin-bottom: 2rem;
66+
margin-bottom: 1rem;
6767
}
6868

6969
.search--active,

source/_static/scss/includes/_theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ $theme-properties: (
3232
--header-text-color: $white $text-dark-color,
3333

3434
// Content
35-
--content-nav-bg: $light-100 $dark-100,
35+
--content-nav-bg: $white $dark-100,
3636
--content-nav-active-border-color: $black $dark-500,
3737
--content-nav-sub-bg: $white $dark-500,
3838
--content-nav-sub-color: $black $dark-0,

source/_templates/header.html

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,7 @@
66
<path d="M52.751.414h9.108v23.63h-9.108zM41.711.74l-18.488 9.92a.919.919 0 0 1-.856 0L3.879.74A2.808 2.808 0 0 0 2.558.414h-.023A2.4 2.4 0 0 0 0 2.641v21.376h9.1V13.842a.918.918 0 0 1 1.385-.682l10.361 5.568a3.634 3.634 0 0 0 3.336.028l10.933-5.634a.917.917 0 0 1 1.371.69v10.205h9.1V2.641A2.4 2.4 0 0 0 43.055.414h-.023a2.808 2.808 0 0 0-1.321.326zm65.564-.326h-9.237v10.755a.913.913 0 0 1-1.338.706L72.762.675a2.824 2.824 0 0 0-1.191-.261h-.016a2.4 2.4 0 0 0-2.535 2.227v21.377h9.163V13.275a.914.914 0 0 1 1.337-.707l24.032 11.2a2.813 2.813 0 0 0 1.188.26 2.4 2.4 0 0 0 2.535-2.227zm7.161 23.63V.414h4.191v23.63zm28.856.421c-11.274 0-19.272-4.7-19.272-12.232C124.02 4.741 132.066 0 143.292 0s19.32 4.7 19.32 12.233-7.902 12.232-19.32 12.232zm0-21.333c-8.383 0-14.84 3.217-14.84 9.1 0 5.926 6.457 9.1 14.84 9.1s14.887-3.174 14.887-9.1c0-5.883-6.504-9.1-14.887-9.1z" />
77
</svg>
88
</a>
9-
10-
{%- include "top-navigation.html" %}
11-
12-
<button data-aside-toggle="nav" type="button" class="icon visible-rm ml-auto">
13-
{%- include "icons/menu.html" %}
14-
Menu
15-
</button>
9+
1610
<!--
1711
<div class="header__actions">
1812

0 commit comments

Comments
 (0)