Skip to content

Commit

Permalink
style(*): align properties
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-abela committed Jun 16, 2024
1 parent 2778853 commit af0ad20
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/styles/globalStyles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const GlobalStyles = createGlobalStyle`
margin: 0;
background: ${({ theme }) => theme.body};
color: ${({ theme }) => theme.text};
transition: all 0.3s ease;
transition: all 0.3s ease;
}
h1, h2, h3, h4, h5, h6 {
Expand Down Expand Up @@ -239,15 +239,15 @@ export const GlobalStyles = createGlobalStyle`
#nprogress .peg {
display: block;
position: absolute;
right: 0px;
right: 0;
width: 100px;
height: 100%;
box-shadow: 0 0 10px ${({ theme }) => theme.primary}, 0 0 5px ${({ theme }) => theme.primary};
opacity: 1.0;
-webkit-transform: rotate(3deg) translate(0px, -4px);
-ms-transform: rotate(3deg) translate(0px, -4px);
transform: rotate(3deg) translate(0px, -4px);
-webkit-transform: rotate(3deg) translate(0, -4px);
-ms-transform: rotate(3deg) translate(0, -4px);
transform: rotate(3deg) translate(0, -4px);
}
/* Remove these to get rid of the spinner */
Expand Down

0 comments on commit af0ad20

Please sign in to comment.