Skip to content

Commit

Permalink
✅ Change units to satisfy prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
MadsBuchmann committed Apr 4, 2022
1 parent 14aad05 commit d16c9d4
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,12 @@ describe('ModalWrapperComponent', () => {

expect(ionContentToolbarElement).toHaveComputedStyle({
'padding-top': '0px',
'--padding-top': '0px',
'--padding-bottom': '0px',
'--padding-start': '0px',
'--padding-end': '0px',
'--padding-top': '0',
'--padding-bottom': '0',
'--padding-start': '0',
'--padding-end': '0',
});
expect(ionContentElement).toHaveComputedStyle({ '--padding-top': '0px' });
expect(ionContentElement).toHaveComputedStyle({ '--padding-top': '0' });
});

it('should place the title in both the content & the header', () => {
Expand Down

0 comments on commit d16c9d4

Please sign in to comment.