优化 & bug fix & 更新文档

This commit is contained in:
Super Manito
2025-01-04 19:20:15 +08:00
parent 9cb5eef276
commit 678f3049aa
10 changed files with 424 additions and 223 deletions

View File

@@ -43,6 +43,10 @@
}
}
.home-cmd pre>code {
padding-right: 3em;
}
.heart {
animation: heart 1000ms infinite;
}
@@ -108,8 +112,27 @@
vertical-align: middle;
}
.sponsor-flex-wrapper {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
}
.sponsor-flex-item {
flex: 0 1 calc(33.33% - 1rem);
min-width: 200px;
max-width: 300px;
}
@media screen and (max-width: 960px) {
.sponsor-flex-item {
flex: 0 1 calc(50% - 1rem);
}
}
@media screen and (max-width: 768px) {
.md-nav__sponsor-bottom {
display: none;
}
}
}