Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix Header UI inconsistency #16464

Merged
merged 5 commits into from Nov 17, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/src/assets/scss/docs-header.scss
Expand Up @@ -12,6 +12,8 @@
padding-bottom: 0;
padding-block-start: 0;
padding-block-end: 0;
max-width: 1700px;
margin: auto;

@media all and (min-width: 1024px) {
justify-content: space-between;
Expand Down
10 changes: 6 additions & 4 deletions docs/src/assets/scss/docs.scss
Expand Up @@ -4,10 +4,10 @@ html {
scroll-behavior: smooth;
}

.docs {
max-width: 1700px;
margin: 0 auto;
}
// .docs {
// max-width: 1700px;
// margin: 0 auto;
// }
Copy link
Member

Choose a reason for hiding this comment

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

Why not just remove it? And don't forget to remove docs class name in html file

Copy link
Contributor Author

Choose a reason for hiding this comment

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

done


.docs-aside__content {
flex: 1;
Expand All @@ -18,6 +18,8 @@ html {
flex: 1;
display: flex;
flex-direction: column;
max-width: 1700px;
margin: auto;

@media all and (min-width: 1024px) {
display: grid;
Expand Down