Skip to content

Commit

Permalink
Fix size of svg in Error
Browse files Browse the repository at this point in the history
  • Loading branch information
marshallku committed Apr 4, 2024
1 parent 1ebcfd1 commit 0a4b4a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions apps/blog/src/templates/Error/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
}
}

width: 100px;
height: 100px;
margin-bottom: 16px;
animation: ufo 1s infinite;
}
Expand Down
4 changes: 2 additions & 2 deletions apps/blog/src/templates/Error/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ function Error({ title, notFound, reset }: ErrorProps) {
<div className={cx()}>
<svg
xmlns="http://www.w3.org/2000/svg"
height="800px"
width="800px"
width={100}
height={100}
version="1.1"
viewBox="0 0 512 512"
xmlSpace="preserve"
Expand Down

0 comments on commit 0a4b4a8

Please sign in to comment.