Skip to content

Commit

Permalink
Sites Dashboard: Fix header style in the list view (#97754)
Browse files Browse the repository at this point in the history
  • Loading branch information
okmttdhr authored Dec 24, 2024
1 parent 0f512b9 commit 3207ba4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/a8c-for-agencies/components/layout/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
white-space: nowrap;
}

.a4a-layout__viewport {
.multi-sites-dashboard-layout__viewport {
margin-inline-start: 0;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
.sites-overview {
padding: 0;

.a4a-layout__viewport {
.multi-sites-dashboard-layout__viewport {
padding-inline: 16px;
}

Expand Down
2 changes: 1 addition & 1 deletion client/layout/multi-sites-dashboard/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default function LayoutHeader( { showStickyContent, children, className }
const [ divRef, hasCrossed ] = useDetectWindowBoundary();

const outerDivProps = divRef ? { ref: divRef as React.RefObject< HTMLDivElement > } : {};
const wrapperClass = clsx( className, 'a4a-layout__viewport' );
const wrapperClass = clsx( className, 'multi-sites-dashboard-layout__viewport' );

const [ minHeaderHeight, setMinHeaderHeight ] = useState( 0 );

Expand Down

0 comments on commit 3207ba4

Please sign in to comment.