Skip to content

Commit

Permalink
Fix stylelint (Revert alpha value notation)
Browse files Browse the repository at this point in the history
  • Loading branch information
yhatt committed Jan 7, 2022
1 parent bc4fe91 commit 14d515b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docsify/_alert.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
height: 2rem;
padding: 0;
cursor: pointer;
opacity: 70%;
opacity: 0.7;

&:hover {
opacity: 80%;
opacity: 0.8;
}

&:hover:active {
opacity: 50%;
opacity: 0.5;
}
}

Expand Down
2 changes: 1 addition & 1 deletion docsify/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ body * {
.content {
background-color: var(--base-background-color);
filter: blur(4px) brightness(0.95);
opacity: 50%;
opacity: 0.5;
}
}
}

0 comments on commit 14d515b

Please sign in to comment.