Skip to content

Commit

Permalink
Don't show a border on mobile below the PageHeader
Browse files Browse the repository at this point in the history
  • Loading branch information
HDinger committed Oct 6, 2023
1 parent 4c06fbc commit 69e4b0a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .changeset/poor-pugs-end.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'@openproject/primer-view-components': patch
---

Don't show a border for PageHeaders on mobile

<!-- Changed components: Primer::OpenProject::PageHeader -->
4 changes: 4 additions & 0 deletions app/components/primer/open_project/page_header.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
border-bottom: var(--borderWidth-thin) solid var(--borderColor-muted);
flex-flow: row wrap;
justify-content: flex-end; /* Keep actions right aligned. */

@media (max-width: 767.98px) {
border-bottom-width: 0px;
}
}

.PageHeader-title {
Expand Down

0 comments on commit 69e4b0a

Please sign in to comment.