Skip to content

Commit

Permalink
Changes based on code and QA
Browse files Browse the repository at this point in the history
  • Loading branch information
petesfrench committed Jul 27, 2023
1 parent 70472d8 commit 4aa47fa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion static/js/src/navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ if (accountContainer) {
</li>
<li class="p-navigation__dropdown-item"><a class="p-link--inverted" href="/pro/dashboard" onclick="event.stopPropagation()">Ubuntu Pro dashboard</a></li>
<li class="p-navigation__dropdown-item">
<a class="p-link--inverted" href="/account/invoices onclick="event.stopPropagation()">Invoices & Payments</a>
<a class="p-link--inverted" href="/account/invoices" onclick="event.stopPropagation()">Invoices & Payments</a>
</li>
<li class="p-navigation__dropdown-item">
<a class="p-link--inverted" href="https://login.ubuntu.com/" onclick="event.stopPropagation()">Account settings</a>
Expand Down
12 changes: 6 additions & 6 deletions static/sass/_pattern_navigation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@
}
}

#all-canonical-content-mobile {
@media (min-width: $breakpoint-navigation-threshold - 1) {
display: none;
}
}

.global-nav-desktop .global-nav-dropdown {
top: 0;
}
Expand Down Expand Up @@ -337,11 +343,5 @@
& ~ .global-nav-dropdown {
top: 2.1rem !important;
}

@media (min-width: $breakpoint-navigation-threshold - 1) {
#all-canonical-content-mobile {
display: none;
}
}
}
}

0 comments on commit 4aa47fa

Please sign in to comment.