Skip to content

Commit

Permalink
custom.scss: Restrict max-width for container to 1600px, not 1000px
Browse files Browse the repository at this point in the history
  • Loading branch information
hosiet committed Aug 27, 2023
1 parent 7147291 commit d1a843c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions assets/scss/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,18 @@ body {
.article-banner {
object-fit: contain;
}

// wowchemy.css:7436 restricts publications page to max width: 1000px.
// we want to get rid of it. set to max width: 1500px.
@media only screen and (min-width: 1001px) and (max-width: 1600px) {
.universal-wrapper {
width: auto;
}
}

@media only screen and (min-width: 1601px) {
.universal-wrapper {
width: 1600px;
}
}

0 comments on commit d1a843c

Please sign in to comment.