Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ const config = {
position: 'left',
},
{
to: '/user-guide/breakpoints',
to: '/user-guide/starting-the-debugger',
label: 'Guide',
position: 'left',
},
Expand All @@ -128,8 +128,8 @@ const config = {
position: 'left',
},
{
to: '/reference/debug-protocol',
label: 'API',
to: '/integrations/ide-support',
label: 'Integrations',
position: 'left',
},
{
Expand Down
3 changes: 1 addition & 2 deletions src/components/HomeHero/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
gap: 3rem;
align-items: center;
padding: 2rem 0 3rem;
padding: 0 0 3rem;
}

.heroText {
Expand Down Expand Up @@ -121,7 +121,6 @@
.hero {
grid-template-columns: minmax(0, 1fr);
gap: 2rem;
padding-top: 1rem;
}

.title {
Expand Down
4 changes: 3 additions & 1 deletion src/components/InstallCommand/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

.tabs {
display: flex;
flex-wrap: wrap;
gap: 0.25rem;
}

Expand Down Expand Up @@ -34,7 +35,8 @@
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
flex-wrap: wrap;
gap: 0.5rem 1rem;
margin-bottom: 0.5rem;
}

Expand Down
16 changes: 16 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,22 @@
margin-right: 2rem;
}

/* The lockup is 4.5:1, so a fixed 4rem height makes it 288px wide -- wider than
the room left beside the hamburger and search on a small phone, which pushed
the whole document sideways. Below the navbar's own breakpoint let the width
lead and the height follow, so it shrinks to fit instead of overflowing. */
@media (max-width: 996px) {
.navbar__brand {
margin-right: 0.5rem;
}

.navbar__logo {
height: auto;
max-height: 4rem;
max-width: 55vw;
}
}


.navbar__link {
font-weight: 500;
Expand Down
Loading