Increased layout width with large screens

This commit is contained in:
Helen Chong 2023-06-23 16:07:53 +08:00
parent 7b68d2f277
commit 5e49ddd377
1 changed files with 7 additions and 1 deletions

View File

@ -457,7 +457,13 @@ article, .content-container {
}
aside {
width: 13rem;
width: 12rem;
}
}
@media only screen and (min-width: 68.75rem) {
main {
width: 68.75rem;
}
}