1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-12-24 00:23:10 +00:00

style: change css color functions to use modern notation

- `rgba()` → `rgb()`
This commit is contained in:
Cotes Chung
2025-07-27 21:39:00 +08:00
parent 648398c63c
commit 29bf95e9c7
8 changed files with 74 additions and 80 deletions

View File

@@ -103,7 +103,7 @@ main {
width: 100%;
height: 100%;
position: absolute;
background-color: var(--card-hovor-bg);
background-color: var(--card-hover-bg);
opacity: 0;
transition: opacity 0.35s ease-in-out;
}
@@ -349,7 +349,7 @@ main {
}
.disabled {
color: rgb(206, 196, 196);
color: rgb(206 196 196);
pointer-events: auto;
cursor: not-allowed;
}