Skip to content

Commit

Permalink
chore(demo): fix example
Browse files Browse the repository at this point in the history
  • Loading branch information
waterplea committed Dec 9, 2024
1 parent 332c32c commit e545e53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

.footer {
position: sticky;
bottom: 0;
bottom: 0.5rem;
display: flex;
flex-direction: column;
gap: 1rem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export default class Example {
);

protected readonly height$ = this.size$.pipe(
map(({height}) => `calc(${height - this.offset}px - 14rem`),
map(({height}) => `calc(${height - this.offset}px - 14.5rem`),
);

protected toggle(open: boolean): void {
Expand Down

0 comments on commit e545e53

Please sign in to comment.