Skip to content

Commit

Permalink
style(prettier): code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
azukashi committed Jul 19, 2023
1 parent 6c7f4dd commit b9fef23
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
4 changes: 3 additions & 1 deletion src/shared/Button.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ export default {
transform: translateY(5px);
}
&:active {
box-shadow: 0 -5px 5px -5px $black, -5px 0 5px -5px $black;
box-shadow:
0 -5px 5px -5px $black,
-5px 0 5px -5px $black;
}
@include on-tablet {
Expand Down
4 changes: 3 additions & 1 deletion src/styles/_nprogress.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
right: 0px;
width: 100px;
height: 100%;
box-shadow: 0 0 10px $cyan, 0 0 5px $cyan;
box-shadow:
0 0 10px $cyan,
0 0 5px $cyan;
opacity: 1;

-webkit-transform: rotate(3deg) translate(0px, -4px);
Expand Down

0 comments on commit b9fef23

Please sign in to comment.