Skip to content

Commit

Permalink
Fix rgb syntax on error page to space-separated
Browse files Browse the repository at this point in the history
#65374 (comment)

Co-authored-by: Wojciech Maj <kontakt@wojtekmaj.pl>
(cherry picked from commit ac0982c)
  • Loading branch information
ryohidaka committed May 9, 2024
1 parent 3e5cc6b commit f91727b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/next/src/pages/_error.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default class Error<P = {}> extends React.Component<P & ErrorProps> {
/* CSS minified from
body { margin: 0; color: #000; background: #fff; }
.next-error-h1 {
border-right: 1px solid rgb(0, 0, 0, .3);
border-right: 1px solid rgb(0 0 0 / .3);
}
${
Expand Down

0 comments on commit f91727b

Please sign in to comment.