Skip to content
Merged
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
20 changes: 20 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -1340,3 +1340,23 @@ a {
.page-enter {
animation: pageSlideIn 0.6s ease-out;
}


@media screen and (max-width: 768px) {
.navbar .navbar__items--right {
display: flex;
align-items: center;
gap: 20px;
}

.navbar .DocSearch-Button {
min-width: 36px;
margin-right: 30px;
}

Comment on lines +1354 to +1356
Copy link

Copilot AI Aug 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The margin-right: 30px on DocSearch-Button conflicts with the gap: 20px already applied to the parent container. This creates inconsistent spacing (50px total between search and toggle). Consider removing margin-right and relying solely on the gap property for consistent spacing.

Suggested change
margin-right: 30px;
}
}

Copilot uses AI. Check for mistakes.

.navbar .colorModeToggle {
margin-left: 4px;
flex-shrink: 0;
}
}

Loading