Increase the width of header on author and tag page

The width used to be equal to one post card width and it wasn't enough for longer author name and description.
This commit is contained in:
Sodbileg Gansukh
2022-07-28 12:37:32 +08:00
parent 129a578751
commit f3c0526ea5
3 changed files with 15 additions and 2 deletions

View File

@ -1636,6 +1636,13 @@ iframe.instagram-media + script + :not([id]) {
height: 16px;
}
@media (min-width: 1001px) {
.author-template .post-card-large .post-card-content {
grid-column: span 2;
max-width: 640px;
}
}
/* 8. Tag Template
/* ---------------------------------------------------------- */
@ -1649,6 +1656,12 @@ iframe.instagram-media + script + :not([id]) {
order: 1;
}
@media (min-width: 1001px) {
.tag-template .post-card-large .post-card-content {
grid-column: span 2;
max-width: 640px;
}
}
/* 9. Error Template
/* ---------------------------------------------------------- */