Skip to content

Commit

Permalink
style cleanup: only apply extra padding to header on desktop (#879)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas Nys committed Sep 2, 2023
1 parent bee54e8 commit bf6e401
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/styles/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@ main a.edit-icon {
background: none;
}

.es-header {
padding: 0 var(--spacing-4);
justify-content: start;
}

.es-sidebar-content .table-of-contents:first-child {
margin-block-start: 0;
}
Expand Down Expand Up @@ -92,6 +87,11 @@ li.toc-heading:first-child {
}

@media (min-width: 845px) {
.es-header {
padding: 0 var(--spacing-4);
justify-content: start;
}

.es-sidebar {
padding: var(--spacing-4);
background-color: var(--color-gray-200);
Expand Down

0 comments on commit bf6e401

Please sign in to comment.