www.fgks.org   »   [go: up one dir, main page]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed max-width of containers from max 960px to 1060px #4926

Merged
merged 2 commits into from
May 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions static/css/components/chart.less
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
@import (less) "less/font-families.less";

@chart-height: 140px;
@chart-width: 898px;
@chart-width: 998px;
@chart-bottom-padding: 20px;

.chart {
Expand Down Expand Up @@ -59,12 +59,12 @@
@media all and ( min-width: @width-breakpoint-desktop ) {
.chart {
float: left;
width: @chart-width;
max-width: @chart-width;
&Yaxis {
width: @chart-height;
}
.thisChart {
width: @chart-width;
max-width: @chart-width;
}
}
}
2 changes: 1 addition & 1 deletion static/css/components/footer.less
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/* stylelint-disable selector-max-specificity */
div#footer-content {
max-width: 960px;
max-width: 1060px;
margin: 5px auto;
padding: 20px;
}
Expand Down
2 changes: 1 addition & 1 deletion static/css/components/header-bar.less
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@import (less) "less/z-index.less";

.header-bar {
max-width: 960px;
max-width: 1060px;
min-width: 300px;
margin: 0 auto;
.display-flex();
Expand Down
4 changes: 2 additions & 2 deletions static/css/components/list-entry.less
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/
.listEntry {
width: 100%;
margin: 20px 10px;
margin: 20px auto;

.cover {
width: 35px;
Expand Down Expand Up @@ -48,6 +48,6 @@

@media only screen and (min-width: @width-breakpoint-tablet) {
.listEntry {
width: 280px;
width: 30%;
}
}
2 changes: 1 addition & 1 deletion static/css/components/work.less
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ div.editionTools {
}
&About {
float: left;
width: 70%;
width: 75%;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion static/css/layout/v2.less
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#test-body-mobile {
box-sizing: border-box;
max-width: 960px;
max-width: 1060px;
width: 100%;
margin: 0 auto;
background-color: @white;
Expand Down
2 changes: 1 addition & 1 deletion static/css/legacy.less
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ div#content {
}
/* stylelint-enable selector-max-specificity */
&Head {
max-width: 918px;
max-width: 1018px;
padding: 20px;
// Reset h1 margin set in common.less
h1 {
Expand Down