🐝 修复手机模式的缩放问题

This commit is contained in:
79E 2022-10-01 09:28:15 +08:00
parent eae85171a0
commit b666bb066a
4 changed files with 22 additions and 9 deletions

View File

@ -56,6 +56,7 @@
}
}
}
@media screen and (max-width: 800px) {
.about{
&-content {

View File

@ -90,7 +90,7 @@
@media screen and (max-width:600px) {
.categories-content {
&-data{
padding: 64px 16px;
padding: 64px 20px;
}
}
}

View File

@ -9,6 +9,7 @@
font-size: 18px;
justify-content: space-between;
flex-wrap: wrap;
transition: all 0.4s ease-in-out;
img {
display: flex;
width: 100%;
@ -83,3 +84,22 @@
}
}
}
@media screen and (max-width:800px) {
.links-content {
&-data{
padding: 64px 50px;
}
}
}
@media screen and (max-width:600px) {
.links-content {
&-data{
padding: 64px 20px;
}
}
}

View File

@ -69,11 +69,3 @@
}
}
}
@media screen and (max-width:600px) {
.tags-content {
&-data{
padding: 64px 16px;
}
}
}