Merge branch 'master' into blog-content

This commit is contained in:
ClovertaTheTrilobita 2026-04-07 12:45:24 +03:00
commit f123fe6e5b
3 changed files with 19 additions and 0 deletions

View file

@ -46,6 +46,12 @@ Then clone it to your local machine.
For details about environment variables, see: <b>[EnvVariables-en.md](docs/EnvVariables-en.md)</b>
- Install dependencies
```shell
npm install
```
- Local development
```shell

View file

@ -47,6 +47,12 @@
有关环境变量的说明详见:<b>[EnvVariables.md](docs/EnvVariables.md)</b>
- 安装依赖
```shell
npm install
```
- 本地调试
```shell

View file

@ -86,11 +86,18 @@ html.dark body::after {
}
@media (max-width: 900px) {
body::after {
opacity: 0.1;
}
}
@media (max-width: 700px) {
body::after {
opacity: 0;
}
}
* {
box-sizing: border-box;
}