Skip to content

Commit

Permalink
style: format code with Prettier (#26)
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in 9e9ddd8 according to the output
from Prettier.

Details: None

Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
  • Loading branch information
deepsource-autofix[bot] authored and TanvirOnGH committed May 27, 2024
1 parent 5f063c0 commit 1840e8a
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 8 deletions.
8 changes: 6 additions & 2 deletions chrome/bar/findbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ findbar {
position: relative;
border-top: none !important;
padding: 0 !important;
transition: transform 200ms ease-in-out, opacity 200ms ease-in-out !important;
transition:
transform 200ms ease-in-out,
opacity 200ms ease-in-out !important;
background: none !important;
pointer-events: none;
z-index: 1;
Expand All @@ -20,7 +22,9 @@ findbar {
findbar:not(:focus-within) {
opacity: 0 !important;
margin-top: -100px !important;
transition: opacity 0.8s ease-in-out 5s, margin-top 0.8s ease-in-out 5s !important;
transition:
opacity 0.8s ease-in-out 5s,
margin-top 0.8s ease-in-out 5s !important;
}

.findbar-container > .findbar-find-fast {
Expand Down
2 changes: 1 addition & 1 deletion chrome/bar/sidebar/sidebery.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
#sidebar,
#sidebar-header {
background-color: inherit !important;
border-inline: 1px solid #C38F8F;
border-inline: 1px solid #c38f8f;
border-inline-width: 0px 0px;
}

Expand Down
2 changes: 1 addition & 1 deletion chrome/bar/toolbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,4 @@ toolbarbutton[open="true"] {
}
.downloadProgress::-moz-progress-bar {
--download-progress-fill-color: #c38f8f;
}
}
20 changes: 16 additions & 4 deletions chrome/styling/animations.css
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,24 @@

@keyframes neon {
0% {
text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #0ff,
0 0 35px #0ff, 0 0 40px #0ff, 0 0 50px #0ff;
text-shadow:
0 0 5px #fff,
0 0 10px #fff,
0 0 15px #fff,
0 0 20px #0ff,
0 0 35px #0ff,
0 0 40px #0ff,
0 0 50px #0ff;
}
100% {
text-shadow: 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #fff, 0 0 30px #0ff,
0 0 40px #0ff, 0 0 50px #0ff, 0 0 60px #0ff;
text-shadow:
0 0 10px #fff,
0 0 15px #fff,
0 0 20px #fff,
0 0 30px #0ff,
0 0 40px #0ff,
0 0 50px #0ff,
0 0 60px #0ff;
}
}

Expand Down

0 comments on commit 1840e8a

Please sign in to comment.