fix(style): add backdrop to code copy button (#185)

* fix(style): add backdrop to code copy button

* chore: run build:css
This commit is contained in:
Xin
2023-11-02 18:43:50 -04:00
committed by GitHub
parent 7be079f504
commit 088e9f7821
3 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,7 @@
@supports (
(-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))
) {
.code-copy-btn {
@apply backdrop-blur-md bg-opacity-[.85] dark:bg-opacity-80;
}
}