pages(media): add 320px device

This commit is contained in:
2022-01-19 17:34:41 +08:00
parent 3c5f6efc2e
commit 183a3e88b9
21 changed files with 874 additions and 530 deletions

View File

@@ -2,7 +2,6 @@
.pagenav {
display: flex;
justify-content: space-between;
padding: 2rem 0;
>a {
text-decoration: none;
@@ -12,8 +11,11 @@
&:hover {
color: #595959;
}
}
@include darkmode {
// =========== 深色 ===========
@include darkmode {
>a {
color: #b6b6b6;
&:hover {
@@ -21,4 +23,9 @@
}
}
}
// =========== 320px 设备 ===========
@media (max-width: 320px) {
padding: 5% 0 7% 0;
}
}