Skip to content

Commit

Permalink
fix(core): add vertical padding on page owner nav link (#8876)
Browse files Browse the repository at this point in the history
  • Loading branch information
anotherchrisberry committed Feb 1, 2021
1 parent 7d94b69 commit b3ae753
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,11 @@ export const ApplicationNavigation = ({ app }: IApplicationNavigationProps) => {
<NavSection key={`section-${i}`} dataSources={section} app={app} />
))}
{SETTINGS.feature.pagerDuty && app.attributes.pdApiKey && (
<div className="nav-section clickable">
<div className="page-category flex-container-h middle text-semibold" onClick={pageApplicationOwner}>
<div className="nav-section sp-padding-s-yaxis">
<div
className="page-category flex-container-h middle text-semibold sp-padding-s-yaxis clickable"
onClick={pageApplicationOwner}
>
<div className="nav-row-item sp-margin-s-right">
{!isExpanded ? (
<Tooltip value="Page App Owner" placement="right">
Expand Down

0 comments on commit b3ae753

Please sign in to comment.