Skip to content

Commit

Permalink
chore(suiteheader and headeraction): fix accessibility scan violations
Browse files Browse the repository at this point in the history
  • Loading branch information
kalyanixraut committed Jun 21, 2023
1 parent c05026b commit c8021cb
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ describe('PageTitleBar', () => {
.should(
'have.attr',
'style',
'--header-offset:48px; --negative-header-offset:-48px; --scroll-transition-progress:0;'
'--header-offset: 48px; --negative-header-offset: -48px; --scroll-transition-progress: 0;'
);

cy.scrollTo(0, 118);
Expand Down Expand Up @@ -164,7 +164,7 @@ describe('PageTitleBar', () => {
.should(
'have.attr',
'style',
'--header-offset:40px; --negative-header-offset:-40px; --scroll-transition-progress:0;'
'--header-offset: 40px; --negative-header-offset: -40px; --scroll-transition-progress: 0;'
);

cy.scrollTo(0, 100);
Expand Down Expand Up @@ -226,7 +226,7 @@ describe('PageTitleBar', () => {
.should(
'have.attr',
'style',
'--header-offset:40px; --negative-header-offset:-40px; --scroll-transition-progress:1;'
'--header-offset: 40px; --negative-header-offset: -40px; --scroll-transition-progress: 1;'
);

breadcrumbsAndTabsAreStickyAndInTheCorrectPosition();
Expand Down Expand Up @@ -270,7 +270,7 @@ describe('PageTitleBar', () => {
.should(
'have.attr',
'style',
'--header-offset:0px; --negative-header-offset:0px; --scroll-transition-progress:0;'
'--header-offset: 0px; --negative-header-offset: 0px; --scroll-transition-progress: 0;'
);

cy.scrollTo(0, 250);
Expand Down

0 comments on commit c8021cb

Please sign in to comment.