Skip to content

Commit

Permalink
scss: Adjust width boundry to 1250px
Browse files Browse the repository at this point in the history
  • Loading branch information
hosiet committed Aug 27, 2023
1 parent 77add3c commit ff5c7fb
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions assets/scss/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,16 @@ body {
////////////////////////////////////////////////////////////////////////

// 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: 1500px) {
// we want to get rid of it. set to max width: 1250px.
@media only screen and (min-width: 1001px) and (max-width: 1250px) {
.universal-wrapper {
width: auto;
}
}

@media only screen and (min-width: 1501px) {
@media only screen and (min-width: 1251px) {
.universal-wrapper {
width: 1500px;
width: 1250px;
}
}

Expand Down Expand Up @@ -118,12 +118,7 @@ body {
///////////////////////////////////////////////////////////////////////

// Enlarge /projects/<tags>/ width
@media (min-width: 1400px) {
@media (min-width: 1300px) {
.container-xl, .container-lg, .container-md, .container-sm, .container {
max-width: 1500px; }
}

@media (min-width: 1600px) {
.container-xl, .container-lg, .container-md, .container-sm, .container {
max-width: 1690px; }
max-width: 1390px; }
}

0 comments on commit ff5c7fb

Please sign in to comment.