style(width): add styles for maximixing document width on mobile phones

This commit is contained in:
andatoshiki 2023-03-02 10:32:06 +08:00
parent 30144190b6
commit 79ec95f455
2 changed files with 11 additions and 5 deletions

View File

@ -134,4 +134,10 @@ img.VPImage.image-src {
}
// team member section styles end
//
// set maximum document width for better mobile viewing experience instead of letting text clustered altogether at a small width
@media (min-width: 1440px) {
.VPDoc.has-aside .content-container.content-container {
max-width: 100%;
}
}
// maximum document width style ends