Skip to content
Merged
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
8 changes: 6 additions & 2 deletions src/extensions/score_layout/assets/css/score.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,13 @@ html[data-theme="dark"] {
.bd-main .bd-content .bd-article-container {
max-width: 100%; /* default is 60em */
}
/* Whole page size */
/* Whole page size β€” stretch to the full viewport width on wide screens
(default max-width is 88rem), but keep a small left/right gutter so the
content doesn't run to the screen edges. */
.bd-page-width {
max-width: 100rem; /* default is 88rem */
max-width: none;
padding-left: 2rem;
padding-right: 2rem;
}


Expand Down
Loading